about summary refs log tree commit diff
path: root/src/database/file
diff options
context:
space:
mode:
authorVika <vika@fireburn.ru>2021-12-05 22:05:36 +0300
committerVika <vika@fireburn.ru>2021-12-05 22:05:36 +0300
commit24b109448bc8f1d30c88bbb9d01a05eec74b3d51 (patch)
tree5895296d6f0b6d6ba148f598718bbaf3fa0c8c7f /src/database/file
parent29f248d8b06f062d5fe552da09a59b91d67118f5 (diff)
frontend: Added listing feeds to the header bar
Diffstat (limited to 'src/database/file')
-rw-r--r--src/database/file/mod.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/database/file/mod.rs b/src/database/file/mod.rs
index 1e0102a..67b3549 100644
--- a/src/database/file/mod.rs
+++ b/src/database/file/mod.rs
@@ -346,12 +346,12 @@ impl Storage for FileStorage {
         Ok(())
     }
 
-    async fn get_channels(
+    async fn get_channels<'a>(
         &self,
-        user: &crate::indieauth::User,
+        user: &'a str,
     ) -> Result<Vec<super::MicropubChannel>> {
         let mut path = relative_path::RelativePathBuf::new();
-        path.push(&user.me.to_string());
+        path.push(user.to_string());
         path.push("channels");
 
         let path = path.to_path(&self.root_dir);