I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 1fb52386 authored by zzz's avatar zzz
Browse files

* I2PSnark:

      - Bring back details links for Postman2 B64 torrents
parent 461af7d0
No related branches found
No related tags found
No related merge requests found
...@@ -512,7 +512,8 @@ public class I2PSnarkServlet extends HttpServlet { ...@@ -512,7 +512,8 @@ public class I2PSnarkServlet extends HttpServlet {
Map.Entry entry = (Map.Entry)iter.next(); Map.Entry entry = (Map.Entry)iter.next();
String name = (String)entry.getKey(); String name = (String)entry.getKey();
String baseURL = (String)entry.getValue(); String baseURL = (String)entry.getValue();
if (!baseURL.startsWith(announce)) if (!(baseURL.startsWith(announce) || // vvv hack for non-b64 announce in list vvv
(announce.startsWith("http://lnQ6yoBT") && baseURL.startsWith("http://tracker2.postman.i2p/"))))
continue; continue;
int e = baseURL.indexOf('='); int e = baseURL.indexOf('=');
if (e < 0) if (e < 0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment