File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/core/features/mainmenu/pages/more Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ import { CoreViewer } from '@features/viewer/services/viewer';
2727import { CoreSharedModule } from '@/core/shared.module' ;
2828import { CoreMainMenuUserButtonComponent } from '../../components/user-menu-button/user-menu-button' ;
2929import { CoreContentLinksHelper } from '@features/contentlinks/services/contentlinks-helper' ;
30+ import { CoreUrl } from '@singletons/url' ;
3031
3132/**
3233 * Page that displays the more page of the app.
@@ -160,7 +161,7 @@ export default class CoreMainMenuMorePage implements OnInit, OnDestroy {
160161
161162 // Check if it's a URL.
162163 if ( / ^ [ ^ : ] { 2 , } : \/ \/ [ ^ ] + $ / i. test ( text ) ) {
163- await CoreContentLinksHelper . visitLink ( text , {
164+ await CoreContentLinksHelper . visitLink ( CoreUrl . decodeURI ( text ) , {
164165 checkRoot : true ,
165166 openBrowserRoot : true ,
166167 } ) ;
You can’t perform that action at this time.
0 commit comments