cui/source/dialogs/about.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
New commits: commit 828197667b78b3b4e4b332d22832ace26a75de56 Author: Andras Timar <andras.ti...@collabora.com> AuthorDate: Wed Apr 30 12:26:15 2025 +0200 Commit: Adolfo Jayme Barrientos <fit...@ubuntu.com> CommitDate: Thu Sep 11 10:32:09 2025 +0200 Fix git hash link in About box Change-Id: Ieccb41f3ca9909c452101883d4c295815ee9d185 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/184820 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com> Reviewed-by: Miklos Vajna <vmik...@collabora.com> (cherry picked from commit ca33fc45edbc9e7f330f14513c53f83c73e78835) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/188429 Reviewed-by: guilhem <guil...@libreoffice.org> Tested-by: Jenkins Tested-by: guilhem <guil...@libreoffice.org> (cherry picked from commit 680b8eca27d6e3a160a147caf8314a81c430c7b7) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/190789 Reviewed-by: Adolfo Jayme Barrientos <fit...@ubuntu.com> diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx index 353d23b16f07..d77cb7e13b87 100644 --- a/cui/source/dialogs/about.cxx +++ b/cui/source/dialogs/about.cxx @@ -78,8 +78,7 @@ AboutDialog::AboutDialog(weld::Window *pParent) OUString sbuildId = GetBuildString(); if (IsStringValidGitHash(sbuildId)) { const tools::Long nMaxChar = 25; - m_pBuildLabel->set_uri("https://gerrit.libreoffice.org/gitweb?p=core.git;a=log;h=" - + sbuildId); + m_pBuildLabel->set_uri("https://git.libreoffice.org/core/history/" + sbuildId); m_pBuildLabel->set_label(sbuildId.getLength() > nMaxChar ? sbuildId.replaceAt( nMaxChar, sbuildId.getLength() - nMaxChar, u"...") : sbuildId);