Ich muss für mein Projekt erreichen, dass zusätzlich zum Abrufdatum einer Internetseite auch die Uhrzeit im Literaturverzeichnis ausgegeben wird. Laut der Biblatex Dokumentation soll dies wohl durch yyyy-mm-ddThh:nn möglich sein, aber irgendetwas scheine ich noch nicht richtig zu machen, da bei mir nun einfach gar kein Abrufdatum mehr angezeigt wird. Kann mir jemand weiterhelfen?
\documentclass[12pt, a4paper, ngerman, 
  toc=chapterentrydotfill, bibliography=totoc, 
  listof=nochaptergap, listof=totoc, 
  captions=figureheading, hidelinks,  fleqn]{scrreprt} 
\usepackage[T1]{fontenc} 
\usepackage[utf8]{inputenc} 
\usepackage[ngerman]{babel} 
\usepackage[onehalfspacing]{setspace} 
\usepackage{lipsum} 
\usepackage[a4paper, 
  left=4cm, right=2cm, top=1.5cm, bottom=2cm, 
  headsep=2cm, headheight=0.5cm, includehead=true, 
  footskip=0cm, includefoot=true, ]{geometry} 
  
\usepackage[backend=biber]{biblatex}%Bibliotheksverwaltung 
\usepackage[babel,german=guillemets]{csquotes}
\usepackage{filecontents} 
\begin{filecontents*}{\jobname.bib} 
@online{biblatex,
	author	=	{Testvorname Testnachname},
	urldate	=	{2019-01-30T15:45},
	%urldate	=	{2019-01-30},
	date	=	{2017-10-20},
	%url		=	{http://mirrors.ibiblio.org/CTAN/macros/latex/exptl/biblatex/doc/biblatex.pdf},
	title	=	{Testdokument}
}
@Comment{jabref-meta: databaseType:biblatex;}
\end{filecontents*} 
\addbibresource{\jobname.bib} 
\nocite{*}
\raggedright
\begin{document} 
%\printbibliography[ nottype=article, nottype=online] 
\printbibliography[type=online, title={Quellenverzeichnis}] 
\end{document}
