From ad970dffdabb7b81ee18583c86898f48df0b4302 Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 13 Jul 2022 18:11:54 +0900 Subject: [PATCH] fix(client): fix url encoded string handling of nirax Fix #8878 --- CHANGELOG.md | 1 + packages/client/src/components/global/url.vue | 14 ++++---------- packages/client/src/nirax.ts | 11 ++++++----- packages/client/src/scripts/safe-uri-decode.ts | 7 +++++++ 4 files changed, 18 insertions(+), 15 deletions(-) create mode 100644 packages/client/src/scripts/safe-uri-decode.ts diff --git a/CHANGELOG.md b/CHANGELOG.md index f6644f016..ea243c19e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ You should also include the user name that made the change. ### Bugfixes - Server: Fix crash at startup if TensorFlow is not supported @mei23 +- Client: URLエンコードされたルーティングを修正 ## 12.112.3 (2022/07/09) diff --git a/packages/client/src/components/global/url.vue b/packages/client/src/components/global/url.vue index 34ba9024c..dc79a2064 100644 --- a/packages/client/src/components/global/url.vue +++ b/packages/client/src/components/global/url.vue @@ -1,5 +1,6 @@