Remove tracking SocketException

This could happen normally after repeater is shutdown and the interface was also torn down by the system.
This commit is contained in:
Mygod
2018-12-26 00:29:57 +08:00
parent 0ff12b9aa9
commit 71011847c4

View File

@@ -51,7 +51,6 @@ class RepeaterManager(private val parent: TetheringFragment) : Manager(), Servic
return try {
NetworkInterface.getByName(p2pInterface ?: return "")?.formatAddresses() ?: ""
} catch (e: SocketException) {
Timber.w(e)
""
}
}