From df1c2b8b59d989e17a89bd160a1fcfae54e8d9a3 Mon Sep 17 00:00:00 2001 From: Antoine Gersant Date: Mon, 29 Aug 2016 22:42:29 -0700 Subject: [PATCH] Revert "Only list music files in browse/flatten" This reverts commit 172c2bb2fc73f13e67e67840294a0133adeb54e8. --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 53bd318..8ddef39 100644 --- a/src/main.rs +++ b/src/main.rs @@ -32,7 +32,7 @@ fn main() { let mut mount = Mount::new(); let api_handler = get_api_handler(collection); mount.mount("/api/", api_handler); - mount.mount("/", Static::new(Path::new("../polaris-web"))); + mount.mount("/", Static::new(Path::new("web"))); Iron::new(mount).http("localhost:3000").unwrap(); }