|
@@ -187,7 +187,7 @@ class ProginnBridge {
|
|
|
}
|
|
|
|
|
|
open(url: string, title?: string) {
|
|
|
- if (this.isInApp && (!this.isAndroid || this.compareAppVersion('gte', '4.20.0'))) {
|
|
|
+ if (this.isInApp && !url.startsWith('proginn://') && (!this.isAndroid || this.compareAppVersion('gte', '4.20.0'))) {
|
|
|
url = `proginn://webview?url=${encodeURIComponent(url)}${title ? '&title=' + encodeURIComponent(title) : ''}`
|
|
|
}
|
|
|
|