1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00

linting fix

This commit is contained in:
gras 2024-04-03 22:56:21 +02:00
parent 7411750ffd
commit 8805fee063

View File

@ -145,7 +145,7 @@ export class Utils {
static timestampToOffsetString(timestamp: string) {
try {
const offsetRegex = /[+-]\d{2}:\d{2}$/;
var match = timestamp.match(offsetRegex);
let match = timestamp.match(offsetRegex);
if (match) {
return match[0];
} else if (timestamp.indexOf("Z") > 0) {