I have the following function in my code: ```priva...
# kotlin-native
t
I have the following function in my code:
Copy code
private fun CBCharacteristic.uuidEqualTo(other: CBCharacteristic): Boolean {
    return this.service.UUID == other.service.UUID && this.UUID == other.UUID // IosBluetoothManager line 433
}
On Firebase I keep getting crash reports that look like the attached image. I cannot figure out why this is happening as I cannot reproduce it myself. Any ideas what could be going wrong here?
👀 1