From 65c3d06ef048b89e7229e3f5979e34770f25f563 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 https://github.com/misskey-dev/misskey/issues/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 f97912c81..df3a1e027 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ You should also include the user name that made the change. ## 12.x.x (unreleased) ### Improvements +- Client: Fix URL-encoded routing - Server: Allow GET method for some endpoints @syuilo - Server: Add rate limit to i/notifications @tamaina - Client: Improve control panel @syuilo 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 @@