* i2psnark: Don't send HTML-only headers for icons (2nd try)

This commit is contained in:
zzz
2014-09-16 22:32:05 +00:00
parent fcfb471a8a
commit 8688f26f15
3 changed files with 5 additions and 1 deletions

View File

@ -186,6 +186,7 @@ public class I2PSnarkServlet extends BasicServlet {
super.doGet(req, resp); super.doGet(req, resp);
else // no POST either else // no POST either
resp.sendError(405); resp.sendError(405);
return;
} }
_themePath = "/themes/snark/" + _manager.getTheme() + '/'; _themePath = "/themes/snark/" + _manager.getTheme() + '/';

View File

@ -1,3 +1,6 @@
2014-09-16 zzz
* i2psnark: Don't send HTML-only headers for icons (2nd try)
2014-09-13 zzz 2014-09-13 zzz
* i2ptunnel: * i2ptunnel:
- Fixes for stopping client tunnels - Fixes for stopping client tunnels

View File

@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */ /** deprecated */
public final static String ID = "Monotone"; public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION; public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 19; public final static long BUILD = 20;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = "-rc"; public final static String EXTRA = "-rc";