diff --git a/webapp/src/components/FirmwareInfo.vue b/webapp/src/components/FirmwareInfo.vue index 891fe2e0..4e8048a2 100644 --- a/webapp/src/components/FirmwareInfo.vue +++ b/webapp/src/components/FirmwareInfo.vue @@ -122,10 +122,10 @@ 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/funghi999/OpenDTU-DUO-Fusion/commits/' + this.systemStatus.git_hash; } - return 'https://github.com/tbnobody/OpenDTU/releases/tag/' + this.systemStatus.git_hash; - }, + return 'https://github.com/funghi999/OpenDTU-DUO-Fusion/releases/tag/' + this.systemStatus.git_hash; + } }, });