diff --git a/nostr_dvm/tasks/content_discovery_currently_popular.py b/nostr_dvm/tasks/content_discovery_currently_popular.py index 9f2f80c..93b0bb4 100644 --- a/nostr_dvm/tasks/content_discovery_currently_popular.py +++ b/nostr_dvm/tasks/content_discovery_currently_popular.py @@ -215,12 +215,13 @@ def build_example(name, identifier, admin_config, options, cost=0, update_rate= dvm_config.CUSTOM_PROCESSING_MESSAGE = processing_msg admin_config.LUD16 = dvm_config.LN_ADDRESS - + image = "https://image.nostr.build/b29b6ec4bf9b6184f69d33cb44862db0d90a2dd9a506532e7ba5698af7d36210.jpg", # Add NIP89 nip89info = { "name": name, - "image": "https://image.nostr.build/b29b6ec4bf9b6184f69d33cb44862db0d90a2dd9a506532e7ba5698af7d36210.jpg", + "image": image, + "picture": image, "about": "I show notes that are currently popular", "lud16": dvm_config.LN_ADDRESS, "encryptionSupported": True, @@ -259,12 +260,12 @@ def build_example_subscription(name, identifier, admin_config, options, update_r dvm_config.CUSTOM_PROCESSING_MESSAGE = processing_msg admin_config.LUD16 = dvm_config.LN_ADDRESS - - + image = "https://image.nostr.build/b29b6ec4bf9b6184f69d33cb44862db0d90a2dd9a506532e7ba5698af7d36210.jpg", # Add NIP89 nip89info = { "name": name, - "image": "https://image.nostr.build/b29b6ec4bf9b6184f69d33cb44862db0d90a2dd9a506532e7ba5698af7d36210.jpg", + "image": image, + "picture": image, "about": "I show notes that are currently popular all over Nostr. I'm also used for testing subscriptions.", "lud16": dvm_config.LN_ADDRESS, "encryptionSupported": True, diff --git a/nostr_dvm/tasks/content_discovery_currently_popular_followers.py b/nostr_dvm/tasks/content_discovery_currently_popular_followers.py index 9eabcb0..552b8a7 100644 --- a/nostr_dvm/tasks/content_discovery_currently_popular_followers.py +++ b/nostr_dvm/tasks/content_discovery_currently_popular_followers.py @@ -231,11 +231,12 @@ def build_example(name, identifier, admin_config, options, cost=0, update_rate= dvm_config.CUSTOM_PROCESSING_MESSAGE = processing_msg admin_config.LUD16 = dvm_config.LN_ADDRESS - + image = "https://image.nostr.build/d92652a6a07677e051d647dcf9f0f59e265299b3335a939d008183a911513f4a.jpg" # Add NIP89 nip89info = { "name": name, - "image": "https://image.nostr.build/d92652a6a07677e051d647dcf9f0f59e265299b3335a939d008183a911513f4a.jpg", + "image": image, + "picture": image, "about": "I show notes that are currently popular from people you follow", "lud16": dvm_config.LN_ADDRESS, "encryptionSupported": True, @@ -274,9 +275,11 @@ def build_example_subscription(name, identifier, admin_config, options, processi dvm_config.CUSTOM_PROCESSING_MESSAGE = processing_msg # Add NIP89 + image = "https://image.nostr.build/d92652a6a07677e051d647dcf9f0f59e265299b3335a939d008183a911513f4a.jpg" nip89info = { "name": name, - "image": "https://image.nostr.build/b29b6ec4bf9b6184f69d33cb44862db0d90a2dd9a506532e7ba5698af7d36210.jpg", + "image": image, + "picture": image, "about": "I show notes that are currently popular, just like the free DVM, I'm also used for testing subscriptions. (beta)", "lud16": dvm_config.LN_ADDRESS, "encryptionSupported": True, diff --git a/nostr_dvm/tasks/content_discovery_currently_popular_topic.py b/nostr_dvm/tasks/content_discovery_currently_popular_topic.py index 3c259f5..4922966 100644 --- a/nostr_dvm/tasks/content_discovery_currently_popular_topic.py +++ b/nostr_dvm/tasks/content_discovery_currently_popular_topic.py @@ -251,6 +251,7 @@ def build_example(name, identifier, admin_config, options, image, description, u nip89info = { "name": name, "image": image, + "picture": image, "about": description, "lud16": dvm_config.LN_ADDRESS, "encryptionSupported": True, @@ -290,6 +291,7 @@ def build_example_subscription(name, identifier, admin_config, options, image, d nip89info = { "name": name, "image": image, + "picture": image, "about": description, "lud16": dvm_config.LN_ADDRESS, "encryptionSupported": True, diff --git a/nostr_dvm/tasks/discovery_trending_notes_nostrband.py b/nostr_dvm/tasks/discovery_trending_notes_nostrband.py index 8812b7d..04ca538 100644 --- a/nostr_dvm/tasks/discovery_trending_notes_nostrband.py +++ b/nostr_dvm/tasks/discovery_trending_notes_nostrband.py @@ -112,6 +112,7 @@ def build_example(name, identifier, admin_config, custom_processing_msg): nip89info = { "name": name, "image": "https://nostr.band/android-chrome-192x192.png", + "picture": "https://nostr.band/android-chrome-192x192.png", "about": "I show trending notes from nostr.band", "amount": "Free", "encryptionSupported": True,