File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -136,14 +136,14 @@ class RequestInterceptor : public QWebEngineUrlRequestInterceptor {
136136
137137 // All the requests originated in the wallet-connect section are allowed, as they are needed to
138138 // load the Dapp logos and it is not easy to filter out non-images requests.
139- bool onWCPage = currentUrl.contains (QRegularExpression (" ^qrc:/account/[^\/]+/wallet-connect/.*$" ));
139+ bool onWCPage = currentUrl.contains (QRegularExpression (R"( ^qrc:/account/[^\/]+/wallet-connect/.*$) " ));
140140 if (onWCPage) {
141141 return ;
142142 }
143143
144144 // Needed for the wallet connect workflow.
145- bool VerifyWCRequest = requestedUrl.contains (QRegularExpression (" ^https://verify\.walletconnect\.com/.*$" ));
146- if (VerifyWCRequest ) {
145+ bool verifyWCRequest = requestedUrl.contains (QRegularExpression (R"( ^https://verify\.walletconnect\.com/.*$) " ));
146+ if (verifyWCRequest ) {
147147 return ;
148148 }
149149
You can’t perform that action at this time.
0 commit comments