Fix default picture_output_split_by_date state

This commit is contained in:
Natsumi
2025-03-17 08:22:39 +13:00
parent fa26abcd4b
commit 4ab4e48757
2 changed files with 7 additions and 4 deletions

View File

@@ -14724,6 +14724,12 @@ console.log(`isLinux: ${LINUX}`);
if (config) {
try {
this.VRChatConfigFile = JSON.parse(config);
if (
typeof this.VRChatConfigFile
.picture_output_split_by_date === 'undefined'
) {
this.VRChatConfigFile.picture_output_split_by_date = true;
}
} catch {
this.$message({
message: 'Invalid JSON in config.json',