We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4d9073 commit 20515b4Copy full SHA for 20515b4
src/configure.js
@@ -43,7 +43,7 @@ export default () => new Promise((resolve) => {
43
.then((res) => res.text())
44
.then((res) => {
45
if (res.startsWith("VERSION: ")) {
46
- window.internal.versionHash = res.split(": ").pop()
+ window.internal.versionHash = res.replace(/\n/g, "").trim().split(": ").pop()
47
} else {
48
window.internal.versionHash = "Development version"
49
}
0 commit comments