summaryrefslogtreecommitdiffstats
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--GeekscottesComicAddin/GeekscottesComicAddin.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/GeekscottesComicAddin/GeekscottesComicAddin.cs b/GeekscottesComicAddin/GeekscottesComicAddin.cs
index 7c6b17c..f436310 100644
--- a/GeekscottesComicAddin/GeekscottesComicAddin.cs
+++ b/GeekscottesComicAddin/GeekscottesComicAddin.cs
@@ -44,10 +44,10 @@ namespace GeekscottesComicAddin
Regex imgRegExp = new Regex ("./strips/(.+)\\.png", RegexOptions.Compiled);
//regexp for first ID
- Regex firstIDRegExp = new Regex ("id=\"navfirst\" href=\"index.php\\?strip=(\\d+)\"", RegexOptions.Compiled);
+ Regex firstIDRegExp = new Regex ("id=\"t_navfirst\" href=\"http://www.nojhan.net/geekscottes/index.php\\?strip=(\\d+)\"", RegexOptions.Compiled);
//regexp for last ID
- Regex lastIDRegExp = new Regex ("id=\"navlast\" href=\"index.php\\?strip=(\\d+)\"", RegexOptions.Compiled);
+ Regex lastIDRegExp = new Regex ("id=\"t_navlast\" href=\"http://www.nojhan.net/geekscottes/index.php\\?strip=(\\d+)\"", RegexOptions.Compiled);
//retrieve a page from a specific ID
const string pageUrlFromId = "http://www.nojhan.net/geekscottes/index.php?strip={0}";