From 6b8007f914645709e2c33493f712b36528138360 Mon Sep 17 00:00:00 2001 From: Lucas Tortora Date: Wed, 12 Aug 2026 12:36:30 -0300 Subject: [PATCH 1/4] Update network connectivity FAQ for new DEGRADED status Reflects keet-mobile PR #7299: adds the DEGRADED network state alongside ONLINE/TRICKY/OFFLINE/UNKNOWN and refreshes the short/detailed status copy shown in-app to match. Co-Authored-By: Claude Sonnet 5 --- .../other-issues.mdx | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/content/technical-support-and-troubleshooting/other-issues.mdx b/content/technical-support-and-troubleshooting/other-issues.mdx index 050b587..27be26c 100644 --- a/content/technical-support-and-troubleshooting/other-issues.mdx +++ b/content/technical-support-and-troubleshooting/other-issues.mdx @@ -7,18 +7,21 @@ schemaType: TechArticle ## How can I check my network connectivity on Keet? -🟢 **P2P friendly network** -You’re on a network that supports smooth connections with all devices. +Open your profile to see your current network status: -🟡 **Not P2P friendly network** -You’re on a limited network, which may affect connections with other devices on limited networks. +| Status | What it means | +| --- | --- | +| 🟢 **Stable network** | You’re on a network that supports easy connections with all devices. | +| 🟢 **Stable network** | You’re on a limited network, which may affect connections with other devices. | +| 🟠 **Unstable network** | Unstable network, please check your internet connection. | +| 🔴 **Offline** | You seem to be offline. On mobile, this may also appear as “You’re offline.” | +| ⚪ **Network status unknown** | Network status unknown. | -No action is required on your part. This status is informational and helps our team quickly diagnose the cause of any issues you might experience. +A **“Stable network”** status is informational only — no action is required on your part. It helps our team quickly diagnose the cause of any issues you might experience. -🔴 **Offline** -You cannot receive messages, voice calls, or video calls. +While offline, you cannot receive messages, voice calls, or video calls. Any messages you send will be delivered once you’re back online. ## How do I update Keet to the latest version? From 4bc1221b4c9c83746bdb7f998c5014b3a1d126f2 Mon Sep 17 00:00:00 2001 From: Lucas Tortora Date: Wed, 12 Aug 2026 15:51:59 -0300 Subject: [PATCH 2/4] Empty commit to trigger preview deployment From 4fb20eab8baffb18433ce6b80610ebfbb3e9ff9f Mon Sep 17 00:00:00 2001 From: Lucas Tortora Date: Wed, 12 Aug 2026 16:01:38 -0300 Subject: [PATCH 3/4] Fix duplicate row label in network status table Second row was mislabeled 'Stable network' (duplicate of row 1); should be 'Degraded network' matching the old 'Not P2P friendly' status this table replaced. --- content/technical-support-and-troubleshooting/other-issues.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/technical-support-and-troubleshooting/other-issues.mdx b/content/technical-support-and-troubleshooting/other-issues.mdx index 27be26c..0245ecc 100644 --- a/content/technical-support-and-troubleshooting/other-issues.mdx +++ b/content/technical-support-and-troubleshooting/other-issues.mdx @@ -12,7 +12,7 @@ Open your profile to see your current network status: | Status | What it means | | --- | --- | | 🟢 **Stable network** | You’re on a network that supports easy connections with all devices. | -| 🟢 **Stable network** | You’re on a limited network, which may affect connections with other devices. | +| 🟡 **Degraded network** | You’re on a limited network, which may affect connections with other devices. | | 🟠 **Unstable network** | Unstable network, please check your internet connection. | | 🔴 **Offline** | You seem to be offline. On mobile, this may also appear as “You’re offline.” | | ⚪ **Network status unknown** | Network status unknown. | From b36b4691f56f7f9daeeab21f5db290adc8019d8b Mon Sep 17 00:00:00 2001 From: Lucas Tortora Date: Wed, 12 Aug 2026 16:02:25 -0300 Subject: [PATCH 4/4] Revert: restore intentional duplicate 'Stable network' label Previous commit incorrectly relabeled the TRICKY row as 'Degraded network'. Per the PR description, ONLINE and TRICKY intentionally share the 'Stable network' label (confirmed against keet-mobile#7299 src/i18n/en.json / NetworkStatusMessage.tsx) and are only distinguished by the detail copy. DEGRADED is already correctly represented by the 'Unstable network' row. --- content/technical-support-and-troubleshooting/other-issues.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/technical-support-and-troubleshooting/other-issues.mdx b/content/technical-support-and-troubleshooting/other-issues.mdx index 0245ecc..27be26c 100644 --- a/content/technical-support-and-troubleshooting/other-issues.mdx +++ b/content/technical-support-and-troubleshooting/other-issues.mdx @@ -12,7 +12,7 @@ Open your profile to see your current network status: | Status | What it means | | --- | --- | | 🟢 **Stable network** | You’re on a network that supports easy connections with all devices. | -| 🟡 **Degraded network** | You’re on a limited network, which may affect connections with other devices. | +| 🟢 **Stable network** | You’re on a limited network, which may affect connections with other devices. | | 🟠 **Unstable network** | Unstable network, please check your internet connection. | | 🔴 **Offline** | You seem to be offline. On mobile, this may also appear as “You’re offline.” | | ⚪ **Network status unknown** | Network status unknown. |