Bump vm2 from 3.9.10 to 3.9.11 (#192)
[e-mobility-charging-stations-simulator.git] / src / charging-station / AuthorizedTagsCache.ts
index d39fbee61e6fa6e27a13fbddbab25dbdffee2d06..747b7593e422d5ef123444170a6cbc470a8333b0 100644 (file)
@@ -23,10 +23,10 @@ export default class AuthorizedTagsCache {
   }
 
   public getAuthorizedTags(file: string): string[] {
-    if (!this.hasTags(file)) {
+    if (this.hasTags(file) === false) {
       this.setTags(file, this.getAuthorizedTagsFromFile(file));
       // Monitor authorization file
-      !this.FSWatchers.has(file) &&
+      this.FSWatchers.has(file) === false &&
         this.FSWatchers.set(
           file,
           FileUtils.watchJsonFile(