From bc48ed17f981cbca94f1aa3aec73b32aeaa8c482 Mon Sep 17 00:00:00 2001 From: jliddev Date: Sun, 22 Nov 2020 16:59:26 -0600 Subject: [PATCH] add the ability to get the raw count for downloads --- wowup-electron/src/app/pipes/download-count.pipe.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/wowup-electron/src/app/pipes/download-count.pipe.ts b/wowup-electron/src/app/pipes/download-count.pipe.ts index e94d3543..9934f463 100644 --- a/wowup-electron/src/app/pipes/download-count.pipe.ts +++ b/wowup-electron/src/app/pipes/download-count.pipe.ts @@ -14,6 +14,7 @@ export class DownloadCountPipe implements PipeTransform { return suffix ? this.translateService.instant("COMMON.DOWNLOAD_COUNT." + suffix, { + rawCount: value, count: shortenDownloadCount(value, 3), simpleCount: shortenDownloadCount(value, 1), myriadCount: shortenDownloadCount(value, 4),