From ac7809415c437fa1d114c6dd2a40fd8c9264a842 Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Mon, 22 Sep 2025 07:48:11 -0400 Subject: [PATCH] ssb: Fix bad escape on the query tab. --- apps/ssb.json | 2 +- apps/ssb/tf-app.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/ssb.json b/apps/ssb.json index b697051b..43b5dd3a 100644 --- a/apps/ssb.json +++ b/apps/ssb.json @@ -1,5 +1,5 @@ { "type": "tildefriends-app", "emoji": "🦀", - "previous": "&C4r2tB/tzPjPSrS3NRiebaNOP94G4FX80yIg7YN9sBQ=.sha256" + "previous": "&YjhLb+AYKqh7vq6OpAJH1BgypJdAbDcqxSduflyMoCo=.sha256" } diff --git a/apps/ssb/tf-app.js b/apps/ssb/tf-app.js index e23c6e2f..e2d3117c 100644 --- a/apps/ssb/tf-app.js +++ b/apps/ssb/tf-app.js @@ -732,7 +732,7 @@ class TfElement extends LitElement { whoami=${this.whoami} .users=${this.users} query=${this.hash?.startsWith('#sql=') - ? decodeURIComponent(this.hash.substring(5)) + ? this.hash.substring(5) : null} > `;