🎨 iOS will display a white screen when clicking on a link without a protocol https://github.com/siyuan-note/siyuan/issues/12038

This commit is contained in:
Daniel 2024-09-05 17:12:54 +08:00
parent 58032e538c
commit 9088e49a76
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -11,7 +11,7 @@ export const openByMobile = (uri: string) => {
new URL(uri);
window.location.href = uri;
} catch (e) {
window.location.href = "http://" + uri;
window.location.href = "https://" + uri;
}
} else if (isInAndroid()) {
window.JSAndroid.openExternal(uri);