Revert "Only list music files in browse/flatten"

This reverts commit 172c2bb2fc.
This commit is contained in:
Antoine Gersant 2016-08-29 22:42:29 -07:00
parent 172c2bb2fc
commit df1c2b8b59

View file

@ -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();
}