##// END OF EJS Templates
Fixed NPE in reflink previews
neko259 -
r376:19cea728 default
parent child Browse files
Show More
@@ -27,7 +27,7 b' function showPostPreview(e) {'
27 //ref id
27 //ref id
28 var pNum = $(this).text().match(/\d+/);
28 var pNum = $(this).text().match(/\d+/);
29
29
30 if (pNum.length == 0) {
30 if (pNum == null || pNum.length == 0) {
31 return;
31 return;
32 }
32 }
33
33
General Comments 0
You need to be logged in to leave comments. Login now