Open elmeunick9 opened 2 months ago
The new version of Deno introduces some changes to the permission system, see.
Notably the introduction of Deno.errors.NotCapable breaks createParams here.
Deno.errors.NotCapable
createParams
try { pgEnv = getPgEnv(); } catch (e) { if (e instanceof Deno.errors.PermissionDenied) { has_env_access = false; } else { throw e; } }
I guess for backwards compatibility we should keep both?
The new version of Deno introduces some changes to the permission system, see.
Notably the introduction of
Deno.errors.NotCapable
breakscreateParams
here.I guess for backwards compatibility we should keep both?