We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ad861b commit 06a4c35Copy full SHA for 06a4c35
src/core/mainmenu/pages/menu/menu.ts
@@ -171,7 +171,10 @@ export class CoreMainMenuPage implements OnDestroy {
171
172
if (this.urlToOpen) {
173
// There's a content link to open.
174
- this.linksDelegate.getActionsFor(this.urlToOpen, undefined).then((actions) => {
+ const url = this.urlToOpen;
175
+ delete this.urlToOpen;
176
+
177
+ this.linksDelegate.getActionsFor(url, undefined).then((actions) => {
178
const action = this.linksHelper.getFirstValidAction(actions);
179
if (action && action.sites.length) {
180
// Action should only have 1 site because we're filtering by username.
0 commit comments