mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-05 06:33:57 +02:00
Fix opening .ton links.
This commit is contained in:
parent
2ff0ed50be
commit
74f7fa80b7
1 changed files with 1 additions and 1 deletions
|
@ -239,7 +239,7 @@ bool UiIntegration::handleUrlClick(
|
||||||
Core::App().openLocalUrl(local, context);
|
Core::App().openLocalUrl(local, context);
|
||||||
return true;
|
return true;
|
||||||
} else if (local.startsWith(u"tonsite://"_q, Qt::CaseInsensitive)) {
|
} else if (local.startsWith(u"tonsite://"_q, Qt::CaseInsensitive)) {
|
||||||
Core::App().iv().showTonSite(url, context);
|
Core::App().iv().showTonSite(local, context);
|
||||||
return true;
|
return true;
|
||||||
} else if (local.startsWith(u"internal:"_q, Qt::CaseInsensitive)) {
|
} else if (local.startsWith(u"internal:"_q, Qt::CaseInsensitive)) {
|
||||||
Core::App().openInternalUrl(local, context);
|
Core::App().openInternalUrl(local, context);
|
||||||
|
|
Loading…
Add table
Reference in a new issue