mirror of https://github.com/M66B/NetGuard.git
Do not show port 0
This commit is contained in:
parent
113c827695
commit
15734a8b6e
|
@ -100,7 +100,7 @@ public class LogAdapter extends CursorAdapter {
|
|||
else
|
||||
tvProtocol.setText(protocol < 0 ? "" : Integer.toString(protocol));
|
||||
|
||||
tvPort.setText(port < 0 ? "" : Integer.toString(port));
|
||||
tvPort.setText(port <= 0 ? "" : Integer.toString(port));
|
||||
tvFlags.setText(flags);
|
||||
|
||||
// Application icon
|
||||
|
|
Loading…
Reference in New Issue