diff --git a/webapp/src/components/FirmwareInfo.vue b/webapp/src/components/FirmwareInfo.vue index afc03cfda..2e3b90a78 100644 --- a/webapp/src/components/FirmwareInfo.vue +++ b/webapp/src/components/FirmwareInfo.vue @@ -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; } }, });