diff options
author | Vika Shleina <vika@fireburn.ru> | 2021-07-19 09:36:45 +0300 |
---|---|---|
committer | Vika Shleina <vika@fireburn.ru> | 2021-07-19 09:39:32 +0300 |
commit | 8399371adc5c48e1847061deee1936c0d64f2a85 (patch) | |
tree | abcadaf26d196a62ba8f54318a7eb87d4141ce86 /src/indieauth.rs | |
parent | 32023fc003618ef0500d0c94217435089cfd1b81 (diff) | |
download | kittybox-8399371adc5c48e1847061deee1936c0d64f2a85.tar.zst |
Replaced scheme with HTTPS in frontend to prevent weird things
Diffstat (limited to 'src/indieauth.rs')
-rw-r--r-- | src/indieauth.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indieauth.rs b/src/indieauth.rs index 7a2a07e..27e545d 100644 --- a/src/indieauth.rs +++ b/src/indieauth.rs @@ -141,7 +141,7 @@ where next: Next<'_, ApplicationState<B>>, ) -> Result { req.set_ext(User::new( - "http://localhost:8080/", + "https://localhost:8080/", "https://curl.haxx.se/", "create update delete undelete media", )); |