ST web server bug for PDF files
This is not a bug of the forum engine, but of the main ST web server! Let's open the following link:
By default on a Chromium/Blink based browsers it just opens a PDF file in a tab, but on Firefox it offers a file download. The cause of the difference is the HTTP Content-Disposition header. Look at what a valid syntax is and what the ST web server returns:
content-disposition: /resource/en/application_note/an2606-stm32-microcontroller-system-memory-boot-mode-stmicroelectronics.pdf
This is a nonsense, which doesn't conform to the HTTP standard! Apparently the Chromium/Blink based browsers interpret such a nonsense as "inline", but the Firefox interprets it as "attachment". Read the following link for a more detailed explanation and an override workaround for Firefox:
