fix: homepage /apps should not be local-only

This commit is contained in:
dr-frmr 2024-05-01 20:32:11 +09:00
parent e9baf79f03
commit a230431354
No known key found for this signature in database

View File

@ -64,7 +64,7 @@ fn init(our: Address) {
)
.expect("failed to bind to /our.js");
bind_http_path("/apps", true, true).expect("failed to bind /apps");
bind_http_path("/apps", true, false).expect("failed to bind /apps");
loop {
let Ok(ref message) = await_message() else {