forked from coracle/flotilla
Fix storage access
This commit is contained in:
@@ -21,7 +21,7 @@
|
||||
|
||||
onSubmit({
|
||||
content: $editor!.getText({blockSeparator: "\n"}).trim(),
|
||||
tags: $editor!.storage.welshman.getEditorTags(),
|
||||
tags: $editor!.storage.nostr.getEditorTags(),
|
||||
})
|
||||
|
||||
$editor!.chain().clearContent().run()
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
["location", location],
|
||||
["start", dateToSeconds(start).toString()],
|
||||
["end", dateToSeconds(end).toString()],
|
||||
...$editor.storage.welshman.getEditorTags(),
|
||||
...$editor.storage.nostr.getEditorTags(),
|
||||
PROTECTED,
|
||||
],
|
||||
})
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
}
|
||||
|
||||
const tags = [
|
||||
...$editor.storage.welshman.getEditorTags(),
|
||||
...$editor.storage.nostr.getEditorTags(),
|
||||
tagRoom(GENERAL, url),
|
||||
["title", title],
|
||||
PROTECTED,
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
if ($uploading) return
|
||||
|
||||
const content = $editor.getText({blockSeparator: "\n"}).trim()
|
||||
const tags = [...$editor.storage.welshman.getEditorTags(), tagRoom(GENERAL, url), PROTECTED]
|
||||
const tags = [...$editor.storage.nostr.getEditorTags(), tagRoom(GENERAL, url), PROTECTED]
|
||||
|
||||
if (!content) {
|
||||
return pushToast({
|
||||
|
||||
Reference in New Issue
Block a user