aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile
diff options
context:
space:
mode:
authorAhmad Mujahid <55625580+AhmadMuj@users.noreply.github.com>2025-02-09 15:18:01 +0400
committerGitHub <noreply@github.com>2025-02-09 11:18:01 +0000
commit192a7e0d7ec3b4d487d8f083527cdd317a962dc0 (patch)
tree93c65d31f1e7862c38e3f57203980809a009b766 /apps/mobile
parentf6cdcc09ca73ce45929b0f019d83de09dd3dc89b (diff)
downloadkarakeep-192a7e0d7ec3b4d487d8f083527cdd317a962dc0.tar.zst
feat: add URL protocol validation to extension and mobile app (#996)
Diffstat (limited to 'apps/mobile')
-rw-r--r--apps/mobile/app/signin.tsx13
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/mobile/app/signin.tsx b/apps/mobile/app/signin.tsx
index 31cb1e01..17a2158d 100644
--- a/apps/mobile/app/signin.tsx
+++ b/apps/mobile/app/signin.tsx
@@ -84,6 +84,19 @@ export default function Signin() {
}
const onSignin = () => {
+ if (!formState.serverAddress) {
+ setError("Server address is required");
+ return;
+ }
+
+ if (
+ !formState.serverAddress.startsWith("http://") &&
+ !formState.serverAddress.startsWith("https://")
+ ) {
+ setError("Server address must start with http:// or https://");
+ return;
+ }
+
if (loginType === LoginType.Password) {
const randStr = (Math.random() + 1).toString(36).substring(5);
login({