forked from I2P_Developers/i2p.i2p
* SusiMail: Better error message on decode fail
http://forum.i2p/viewtopic.php?t=11469
This commit is contained in:
@ -614,7 +614,7 @@ public class WebMail extends HttpServlet
|
||||
}
|
||||
catch (Exception e1) {
|
||||
showBody = false;
|
||||
reason += _("Part ({0}) not shown, because of {1}", ident, e1.getClass().getName()) + br;
|
||||
reason += _("Part ({0}) not shown, because of {1}", ident, e1.toString()) + br;
|
||||
}
|
||||
}
|
||||
if( html )
|
||||
|
@ -3,6 +3,7 @@
|
||||
prevent slowdowns or stalls
|
||||
* SAM: Add support for RAW on the bridge socket in v3 (ticket #1334)
|
||||
* Streaming; Disable fail-fast for now.
|
||||
* SusiMail: Better error message on decode fail
|
||||
|
||||
2014-07-15 str4d
|
||||
* I2CP: Stubs for I2CP connections over Unix domain sockets
|
||||
|
@ -18,7 +18,7 @@ public class RouterVersion {
|
||||
/** deprecated */
|
||||
public final static String ID = "Monotone";
|
||||
public final static String VERSION = CoreVersion.VERSION;
|
||||
public final static long BUILD = 17;
|
||||
public final static long BUILD = 18;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
|
Reference in New Issue
Block a user