make sure it's still working on android

This commit is contained in:
William Casarin
2023-07-09 12:17:54 -07:00
parent 6232a8429e
commit 2526f8001c
5 changed files with 26 additions and 18 deletions

View File

@@ -75,17 +75,13 @@ struct EventRefs {
refs: Vec<EventRef>,
}
struct TextNote {
event: Event,
shards: Shards,
refs: EventRefs,
}
struct DM {
decrypted: Option<String>,
shards: Shards,
}
enum Note {
Text(TextNote),
struct Note {
event: NostrEvent,
shards: Shards,
refs: EventRef,
}