allow native

pull/5370/head
filip mertens 3 years ago
parent b52a940385
commit ff93bc13f7
  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