Using the biblatex-chicago package, when I cite articles with no page numbers, footnotes end in a comma instead of a period. The references are formatted correctly. Is there a way to fix this?
MWE:
\documentclass{article}
\usepackage{biblatex-chicago}
\usepackage{lipsum}
\begin{filecontents}[overwrite]{mwesources.bib}
@article{nopgs,
author = {John Appleseed},
journal = {The Journal},
title = {A Treatise},
year = {1900}}
\end{filecontents}
\addbibresource{mwesources.bib}
\begin{document}
\lipsum[1]\footcite{nopgs}
\printbibliography
\end{document}

