Skip to content

Commit 145dcae

Browse files
authored
Merge pull request #142 from leiless/gh-137-138-fix-frontend-split_once-error
GH#137 / GH#138: Fix frontend `Something went wrong: Failed to split_once header`
2 parents c56cbdb + 79bd7cb commit 145dcae

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/serve/frontend.rs

+3
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,9 @@ async fn get_pan_thunder_com(
259259
if header.is_empty() {
260260
break;
261261
}
262+
if header.starts_with("getEnvs ") {
263+
continue;
264+
}
262265

263266
let (header, val) = header
264267
.split_once(':')

0 commit comments

Comments
 (0)