fix: enable passphrase reset with MAS (MESSENGER-7861)

This commit is contained in:
Frank Rotermund
2025-11-05 08:00:54 +01:00
parent e4179f8ceb
commit 9730c47b19
4 changed files with 21 additions and 2 deletions
@@ -86,4 +86,12 @@ Please see LICENSE in the repository root for full details.
[super setLocalHTMLFile:localHTMLFile];
}
// bwi #7861 we need to enable javascript only for reauthentication
- (void)enableJavascript:(BOOL)enable {
if (webView) {
webView.configuration.preferences.javaScriptEnabled = enable;
}
}
@end