Skip to content

Commit d896d54

Browse files
committed
Merge branch 'frontend-qt-fix-iframe-loading' into staging-bitrefill
2 parents d6737c5 + 1180651 commit d896d54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontends/qt/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ class RequestInterceptor : public QWebEngineUrlRequestInterceptor {
172172
// We treat the exchange pages specially because we need to allow exchange
173173
// widgets to load in an iframe as well as let them open external links
174174
// in a browser.
175-
bool onExchangePage = currentUrl.contains(QRegularExpression(QString(R"(^%1:/index\.html\#/exchange/.*$)").arg(scheme)));
175+
bool onExchangePage = currentUrl.contains(QRegularExpression(QString(R"(^%1:/index\.html\#/market/.*$)").arg(scheme)));
176176
bool onBitsurancePage = currentUrl.contains(QRegularExpression(QString(R"(^%1:/index\.html\#/bitsurance/.*$)").arg(scheme)));
177177
if (onExchangePage || onBitsurancePage) {
178178
if (info.firstPartyUrl().toString() == info.requestUrl().toString()) {

0 commit comments

Comments
 (0)