You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi team, the deeplink parameter decoder seems not working correctly. Here is an example:
// Create a parameter querynewURLSearchParams({context: '{"foo": "bar"}'}).toString()
open 'raycast://extensions/author/extension/command?context=%7B%22foo%22%3A+%22bar%22%7D'
Raycast cannot parse this URL parameter due to there is an space between foo": and "bar. Logically speaking, the JSON string should be an valid parameter.
Also this,
newURLSearchParams({context: '{"foo":"b a r"}'}).toString()
open 'raycast://extensions/author/extension/command?context=%7B%22foo%22%3A%22b+a+r%22%7D'
Raycast parsed this parameter query to wrong format.
It returns a {foo: "b+a+r"}.
I re-posted the issue here to keep a backup because messages older than 90 days are hidden on Slack.
Description
Hi team, the deeplink parameter decoder seems not working correctly. Here is an example:
open 'raycast://extensions/author/extension/command?context=%7B%22foo%22%3A+%22bar%22%7D'
Raycast cannot parse this URL parameter due to there is an space between
foo":
and"bar
. Logically speaking, the JSON string should be an valid parameter.Also this,
open 'raycast://extensions/author/extension/command?context=%7B%22foo%22%3A%22b+a+r%22%7D'
Raycast parsed this parameter query to wrong format.
It returns a
{foo: "b+a+r"}
.I re-posted the issue here to keep a backup because messages older than 90 days are hidden on Slack.
Here are some replies under the thread:
References
Related
The text was updated successfully, but these errors were encountered: