mirror of
https://github.com/permissionlesstech/bitchat.git
synced 2026-07-25 16:05:19 +00:00
Fix Swift compile error: add break statements to empty switch cases
This commit is contained in:
@@ -1038,8 +1038,10 @@ class ChatViewModel: ObservableObject {
|
|||||||
readReceiptsSent += 1
|
readReceiptsSent += 1
|
||||||
case .read:
|
case .read:
|
||||||
// Already read, no need to send another receipt
|
// Already read, no need to send another receipt
|
||||||
|
break
|
||||||
default:
|
default:
|
||||||
// Message not yet delivered, can't mark as read
|
// Message not yet delivered, can't mark as read
|
||||||
|
break
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// No delivery status - this might be an older message
|
// No delivery status - this might be an older message
|
||||||
|
|||||||
Reference in New Issue
Block a user