Revert "fix: change url for firmware info to"

This reverts commit dfa0a1c98b.
This commit is contained in:
helgeerbe 2023-04-27 21:42:05 +02:00
parent dfa0a1c98b
commit 32913c2b2e

View File

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