From b742e7b0ff58696947acaaf66c1dffbb0976d452 Mon Sep 17 00:00:00 2001
From: Believethehype <1097224+believethehype@users.noreply.github.com>
Date: Thu, 5 Dec 2024 11:53:09 +0100
Subject: [PATCH] noogle, fixes image/picture
---
ui/noogle/src/components/Login.vue | 6 +++---
ui/noogle/src/components/Nip89view.vue | 2 +-
ui/noogle/src/components/Search.vue | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/ui/noogle/src/components/Login.vue b/ui/noogle/src/components/Login.vue
index f16bbcf..cc7a817 100644
--- a/ui/noogle/src/components/Login.vue
+++ b/ui/noogle/src/components/Login.vue
@@ -738,7 +738,7 @@ export default {
let nip88 = {
title: "",
- image: "",
+ picture: "",
amounts: [],
zaps: [],
perks: [],
@@ -754,8 +754,8 @@ export default {
}
- if (jsonentry.picture) {
- jsonentry.image = jsonentry.picture
+ if (jsonentry.image) {
+ jsonentry.picture = jsonentry.image
}
if (!jsonentry.amount) {
diff --git a/ui/noogle/src/components/Nip89view.vue b/ui/noogle/src/components/Nip89view.vue
index d1be5ab..00aa888 100644
--- a/ui/noogle/src/components/Nip89view.vue
+++ b/ui/noogle/src/components/Nip89view.vue
@@ -92,7 +92,7 @@