fix: Clear packet database alongside node database (#3634)

Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
James Rich 2025-11-06 14:16:59 -06:00 committed by GitHub
parent 6d1f49f6bc
commit 421e35a19c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 17 additions and 1 deletions

View file

@ -1990,6 +1990,9 @@ class MeshService : Service() {
Timber.d("Clearing nodeDB")
discardNodeDB()
nodeRepository.clearNodeDB()
Timber.d("Clearing packetDB")
packetRepository.get().clearPacketDB()
}
private fun updateLastAddress(deviceAddr: String?) {