瀏覽代碼

Fix JS error when Navigation API is not present (#8524)

Closes https://github.com/FreshRSS/FreshRSS/issues/8511
Inverle 3 月之前
父節點
當前提交
b249b9d026
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      p/scripts/main.js

+ 3 - 0
p/scripts/main.js

@@ -2360,6 +2360,9 @@ function init_main_beforeDOM() {
 }
 
 function init_navigation_handler() {
+	if (!('navigation' in window)) {
+		return;
+	}
 	navigation.addEventListener('navigate', (e) => {
 		if (!(e.canIntercept && e.hashChange && e.navigationType === 'traverse')) {
 			return;