Show chatroom first if content contains #chat
Changelog-Added: Load chat view first if content contains #chat Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
@@ -45,7 +45,11 @@ struct EventId: Identifiable, CustomStringConvertible {
|
||||
}
|
||||
}
|
||||
|
||||
class NostrEvent: Codable, Identifiable, CustomStringConvertible {
|
||||
class NostrEvent: Codable, Identifiable, CustomStringConvertible, Equatable {
|
||||
static func == (lhs: NostrEvent, rhs: NostrEvent) -> Bool {
|
||||
return lhs.id == rhs.id
|
||||
}
|
||||
|
||||
var id: String
|
||||
var sig: String
|
||||
var tags: [[String]]
|
||||
|
||||
Reference in New Issue
Block a user