I generated a bibliography with biblatex. In one reference there seems to be a problem in splitting the Doi, so now the doi goes over the line on the right side. I tried solving this problem with different approaches that I found on this website but I couldn't figure out how to do this.
Thanks for your help!
\begin{filecontents}[overwrite]{references.bib}
@article{ProbelmLineBreacky,
title = {{How to get a line breack}},
year = {2019},
journal = {Journal},
author = {Smith and Mayer},
number = {3},
month = {9},
pages = {69},
volume = {7},
publisher = {Publisher},
url = {https://000000000},
doi = {10.3390/something8838339},
issn = {2227-9059},
pmid = {31505812},
keywords = {some}
}
\end{filecontents}
\documentclass[11pt,a4paper,titlepage,oneside]{memoir}
\usepackage[hyphens]{url}
\usepackage[linkcolor=black,colorlinks=true,citecolor=black,filecolor=black]{hyperref}
\usepackage[sorting=none]{biblatex}
\addbibresource[location=remote]{references.bib}
\begin{document}
\printbibliography
\end{document}


xurlpackage? – samcarter_is_at_topanswers.xyz May 23 '23 at 13:01\usepackage{xurl}. Other options to improve the line breaking are discussed in https://tex.stackexchange.com/q/442308/35864. – moewe May 23 '23 at 15:29