allow native

fix_save
filip mertens 3 years ago
parent 421f1c0f7a
commit 30a0425e09
  1. 3
      apps/remix-ide/src/remixAppManager.js

@ -76,11 +76,10 @@ export class RemixAppManager extends PluginManager {
return false
}
// skipping native plugins' requests
if (isNative(from) && !isSensitiveCall) {
if (isNative(from)) {
return true
}
// ask the user for permission
return await this.call('permissionhandler', 'askPermission', this.profiles[from], this.profiles[to], method, message, isSensitiveCall)
}

Loading…
Cancel
Save