From c3e6ed9089dfb25c7fd88bd9bf20727b088359f7 Mon Sep 17 00:00:00 2001 From: Tiago Vasconcelos Date: Fri, 2 Dec 2022 14:59:02 +0000 Subject: [PATCH] fix for default ad image URL --- lnbits/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnbits/settings.py b/lnbits/settings.py index 2d28e54e..7994cf8e 100644 --- a/lnbits/settings.py +++ b/lnbits/settings.py @@ -64,7 +64,7 @@ class Settings(BaseSettings): lnbits_custom_logo: str = Field(default=None) lnbits_ad_space_title: str = Field(default="Suported by") lnbits_ad_space: str = Field( - default="https://shop.lnbits.com/;https://raw.githubusercontent.com/lnbits/lnbits/main/lnbits/static/images/lnbits-shop-light.png;https://raw.githubusercontent.com/lnbits/lnbits/main/lnbits/static/images/lnbits-shop-dark.png" + default="https://shop.lnbits.com/;/static/images/lnbits-shop-light.png;/static/images/lnbits-shop-dark.png" ) # sneaky sneaky lnbits_ad_space_enabled: bool = Field(default=False)