You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/api/admin-winning/adminWinning.service.ts
+2-5Lines changed: 2 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -350,7 +350,7 @@ export class AdminWinningService {
350
350
casePaymentStatus.OWED:
351
351
if(releaseDate){
352
352
constsinceRelease=
353
-
(releaseDate.getTime()-now)/(3600*1000);
353
+
(now-releaseDate.getTime())/(3600*1000);
354
354
if(sinceRelease<12){
355
355
errMessage=`Cannot put a processing payment back to owed, unless it's been processing for at least 12 hours. Currently it's only been ${sinceRelease.toFixed(1)} hours`;
356
356
}else{
@@ -376,10 +376,7 @@ export class AdminWinningService {
0 commit comments