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
"Error occured while validateServiceBanRecord: "+err.message
29
-
);
32
+
logger.error(err);
30
33
return;
31
34
}
32
35
if(banRecord!==undefined){
33
36
constformattedExpireAt=banRecord.expireAt
34
37
.toISOString()
35
38
.replace("T"," ")
36
39
.split(".")[0];
37
-
constbanErrorMessage=`${req.originalUrl} : user ${req.userId} (${req.session.loginInfo.sid}) is temporarily restricted from service until ${formattedExpireAt}.`;
40
+
constbanErrorMessage=`${req.originalUrl} : user ${req.userId} (${
41
+
req.session.loginInfo!.sid
42
+
}) is temporarily restricted from service until ${formattedExpireAt}.`;
0 commit comments