fix: change url for firmware info to

openDTU-onbattery
This commit is contained in:
helgeerbe 2023-04-27 21:31:38 +02:00
parent cc32e3973e
commit dfa0a1c98b

View File

@ -74,9 +74,9 @@ export default defineComponent({
},
versionInfoUrl(): string {
if (this.systemStatus.git_is_hash) {
return 'https://github.com/tbnobody/OpenDTU/commits/' + this.systemStatus.git_hash;
return 'https://github.com/helgeerbe/OpenDTU-OnBattery/commits/' + this.systemStatus.git_hash;
}
return 'https://github.com/tbnobody/OpenDTU/releases/tag/' + this.systemStatus.git_hash;
return 'https://github.com/helgeerbe/OpenDTU-OnBattery/releases/tag/' + this.systemStatus.git_hash;
}
},
});