From 30151357503764feecdcdc1443e475bcaef7bd1c Mon Sep 17 00:00:00 2001
From: Philipp Holzer <admin+github@philipp.info>
Date: Wed, 29 May 2019 19:54:25 +0200
Subject: [PATCH] Adding fallback route in case of a non valid route see
 https://github.com/friendica/friendica/issues/6918#issuecomment-491009954

---
 mod/notifications.php | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/mod/notifications.php b/mod/notifications.php
index ff954d4189..8bc9a76c38 100644
--- a/mod/notifications.php
+++ b/mod/notifications.php
@@ -121,6 +121,9 @@ function notifications_content(App $a)
 	} elseif (($a->argc > 1) && ($a->argv[1] == 'home')) {
 		$notif_header = L10n::t('Home Notifications');
 		$notifs = $nm->homeNotifs($show, $startrec, $perpage);
+	// fallback - redirect to main page
+	} else {
+		$a->internalRedirect('notifications');
 	}
 
 	// Set the pager
-- 
2.39.5