diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-08-11 16:49:07 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-08-11 16:49:07 +0530 |
| commit | 0623db559013a321d3d87a064c0defb9e01763dc (patch) | |
| tree | d70647b72e5a25f9890c10ad7e4b241827427b14 | |
| parent | 50cee0498e5b254015e31df9010833a29c0cb2a8 (diff) | |
| download | null-browser-0623db559013a321d3d87a064c0defb9e01763dc.tar.gz null-browser-0623db559013a321d3d87a064c0defb9e01763dc.zip | |
Fix string values in null rpc params to be url decoded
| -rw-r--r-- | src/widgets/WebView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/WebView.cpp b/src/widgets/WebView.cpp index 91615a4..ceb9c8e 100644 --- a/src/widgets/WebView.cpp +++ b/src/widgets/WebView.cpp @@ -67,7 +67,7 @@ void WebView::on_rpc_message(const NullRPCMessage &message) { return; RpcArgs args; - for (auto pair : message.params.queryItems()) + for (auto pair : message.params.queryItems(QUrl::FullyDecoded)) args.insert(pair); auto func = exposed_functions.at(message.name); |
