From 3fd66e374716e452799b00c045ec35eefd0299e3 Mon Sep 17 00:00:00 2001 From: Andreas Richter <708186+richtera@users.noreply.github.com> Date: Thu, 11 Apr 2024 04:53:50 -0400 Subject: [PATCH] fix: Push a change --- src/lib/permissions.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/permissions.ts b/src/lib/permissions.ts index 15647f5b..b35fb55e 100644 --- a/src/lib/permissions.ts +++ b/src/lib/permissions.ts @@ -63,6 +63,7 @@ export function decodePermissions(permissionHex: string) { // Do not use an for of loop here to not require the regenerator runtime // Deal with ALL_PERMISSIONS the same way. So as long as all the bits in ALL_PERMISSIONS + // are set the same way as in ALL_PERMISSIONS then this flag will return as true. // It does not mean some extra permissions are not included. for (let i = 0; i < permissionsToTest.length; i += 1) {