server: fix incorrect file mode for ob_state file

This commit is contained in:
Marks Polakovs 2020-04-07 12:43:36 +02:00
parent fb31848a4c
commit b3ca85b690

View file

@ -20,7 +20,7 @@ def write_ob_status(status: bool) -> None:
if not os.path.exists("/music/ob_state.conf"): if not os.path.exists("/music/ob_state.conf"):
print("OB State file does not exist. Bailing.") print("OB State file does not exist. Bailing.")
return return
with open("/music/ob_state.conf", "r") as fd: with open("/music/ob_state.conf", "w") as fd:
content = fd.read() content = fd.read()
if "ws" in content: if "ws" in content:
content = re.sub(file_contents_ex, "ws=" + str(1 if status else 0), content) content = re.sub(file_contents_ex, "ws=" + str(1 if status else 0), content)