https://bugs.documentfoundation.org/show_bug.cgi?id=143216
--- Comment #6 from Dave Gilbert <[email protected]> --- Looking at the generated pdf, uncompressed with podofouncompress I see: /URI (./https:%2F%2Fusername:[email protected]) Note the './' at the start - so something thinks it's dealing with a relative path. I looked at pdfwriter_impl.cxx:emitLinkAnnotations and it has: if( m_aContext.RelFsys && eBaseProtocol == eTargetProtocol && eTargetProtocol == INetProtocol::File ) bSetRelative = true; printing those values and we see: PDFWriterImpl::emitLinkAnnotations RelFSys: 1 eBaseProtocol: 3 eTargetProtocol: 3 and looking at urlobj.hxx, InetProtocol::File is 3 - so yep, that's been misparsed as a relative file path; not sure by what yet. -- You are receiving this mail because: You are the assignee for the bug.
