8000
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 6bd83d1 commit 687e74fCopy full SHA for 687e74f
js/enumerate.js
@@ -2,8 +2,12 @@ function RunPageEdit() {
2
var isEditablePage = 0;
3
do {
4
// Can I reply? (aka Can I quote a post?)
5
- var canReply = +(document.querySelector('#CH_subscription > form > select').children.length > 2);
6
- var currentTopic = document.location.pathname;
+ try {
+ var canReply = +(document.querySelector('#CH_subscription > form > select').children.length > 2);
7
+ var currentTopic = document.location.pathname;
8
+ } catch (e) {
9
+ continue;
10
+ }
11
12
// Parse Topic ID
13
{
0 commit comments