We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a49118 commit 7d3a504Copy full SHA for 7d3a504
1 file changed
src/ActiveLogin.Authentication.BankId.Core/Launcher/BankIdLauncher.cs
@@ -170,12 +170,10 @@ private static string GetIOsBrowserSpecificRedirectUrl(BankIdSupportedDevice dev
170
BankIdSupportedDeviceBrowser.Chrome => IosChromeScheme,
171
BankIdSupportedDeviceBrowser.Firefox => IosFirefoxScheme,
172
173
- // Opens a new tab on app launch, so can't launch automatically
174
- BankIdSupportedDeviceBrowser.Edge => string.Empty,
175
- BankIdSupportedDeviceBrowser.Opera => string.Empty,
+ BankIdSupportedDeviceBrowser.Edge => NullRedirectUrl,
+ BankIdSupportedDeviceBrowser.Opera => NullRedirectUrl,
176
177
- // Return empty string so user can go back manually, will catch unknown third party browsers
178
- _ => string.Empty
+ _ => NullRedirectUrl
179
};
180
}
181
0 commit comments