From 970ba2247b9b6617e33e4db8c59e50ac0f042f5f Mon Sep 17 00:00:00 2001 From: Mygod Date: Fri, 19 Jul 2019 11:08:42 +0800 Subject: [PATCH] Fix #120 --- mobile/src/main/java/be/mygod/vpnhotspot/client/Client.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/mobile/src/main/java/be/mygod/vpnhotspot/client/Client.kt b/mobile/src/main/java/be/mygod/vpnhotspot/client/Client.kt index 499c4134..0968f60d 100644 --- a/mobile/src/main/java/be/mygod/vpnhotspot/client/Client.kt +++ b/mobile/src/main/java/be/mygod/vpnhotspot/client/Client.kt @@ -76,7 +76,6 @@ open class Client(val mac: Long, val iface: String) { if (iface != other.iface) return false if (mac != other.mac) return false if (ip != other.ip) return false - if (record.value != other.record.value) return false return true }