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

Skip to content
Snippets Groups Projects
Commit 9b2bbe03 authored by zzz's avatar zzz
Browse files

dont put HTML in Android router logs

parent 7e872088
No related branches found
No related tags found
No related merge requests found
......@@ -145,7 +145,7 @@ abstract class LogWriterBase implements Runnable {
* @since 0.9.3
*/
private String dupMessage(int dupCount, LogRecord lastRecord, boolean reverse) {
String arrows = reverse ? "↓↓↓" : "^^^";
String arrows = reverse ? (SystemVersion.isAndroid() ? "vvv" : "↓↓↓") : "^^^";
return LogRecordFormatter.getWhen(_manager, lastRecord) + ' ' + arrows + ' ' +
_t(dupCount, "1 similar message omitted", "{0} similar messages omitted") + ' ' + arrows + '\n';
}
......
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