about summary refs log tree commit diff
path: root/kittybox-rs/src
diff options
context:
space:
mode:
Diffstat (limited to 'kittybox-rs/src')
-rw-r--r--kittybox-rs/src/main.rs4
-rw-r--r--kittybox-rs/src/micropub/util.rs1
2 files changed, 3 insertions, 2 deletions
diff --git a/kittybox-rs/src/main.rs b/kittybox-rs/src/main.rs
index 1586e60..395bb31 100644
--- a/kittybox-rs/src/main.rs
+++ b/kittybox-rs/src/main.rs
@@ -23,7 +23,7 @@ async fn main() {
         }
     };
 
-    let listen_at = match env::var("SERVE_AT")
+    let listen_addr = match env::var("SERVE_AT")
         .ok()
         .unwrap_or_else(|| "[::]:8080".to_string())
         .parse::<std::net::SocketAddr>()
@@ -182,7 +182,7 @@ async fn main() {
             let tcp_listener = if let Ok(Some(listener)) = listenfd.take_tcp_listener(0) {
                 listener
             } else {
-                std::net::TcpListener::bind(listen_at).unwrap()
+                std::net::TcpListener::bind(listen_addr).unwrap()
             };
             // Set the socket to non-blocking so tokio can poll it
             // properly -- this is the async magic!
diff --git a/kittybox-rs/src/micropub/util.rs b/kittybox-rs/src/micropub/util.rs
index 5097878..b884e8a 100644
--- a/kittybox-rs/src/micropub/util.rs
+++ b/kittybox-rs/src/micropub/util.rs
@@ -129,6 +129,7 @@ pub fn normalize_mf2(mut body: serde_json::Value, user: &TokenData) -> (String,
         match body["type"][0].as_str() {
             Some("h-entry") => {
                 // Set the channel to the main channel...
+                // TODO find like posts and move them to separate private channel
                 let default_channel = me.join(DEFAULT_CHANNEL_PATH).unwrap().to_string();
 
                 body["properties"]["channel"] = json!([default_channel]);