https://bugs.documentfoundation.org/show_bug.cgi?id=166774
--- Comment #8 from Jim Raykowski <[email protected]> --- I just noticed this in: Version: 26.2.0.0.alpha1+ (X86_64) / LibreOffice Community Build ID: cbee4864f7237c4f052e5de33045eeb36b3fef3c CPU threads: 4; OS: Linux 5.15; UI render: default; VCL: gtk3 Locale: en-US (en_US.UTF-8); UI: en-US Calc: threaded I get this message: "Secure Connection Failed The connection to git.libreoffice.org was interrupted while the page was loading. The page you are trying to view cannot be shown because the authenticity of the received data could not be verified. Please contact the website owners to inform them of this problem." It seems the reason for this message is that the 'history' part of the uri set by this line in the AboutDialog ctor in cui/source/dialogs/about.cxx gets changed to '+log' when read by the web server: m_pBuildLabel->set_uri("https://git.libreoffice.org/core/history/" + sbuildId); Replacing 'history' with '+' as below makes navigating to the build commit work for me: m_pBuildLabel->set_uri("https://git.libreoffice.org/core/+/" + sbuildId); -- You are receiving this mail because: You are the assignee for the bug.
