diff --git a/src/qtlibtorrent/qtorrenthandle.cpp b/src/qtlibtorrent/qtorrenthandle.cpp index 82368e49f..31a52a5d3 100644 --- a/src/qtlibtorrent/qtorrenthandle.cpp +++ b/src/qtlibtorrent/qtorrenthandle.cpp @@ -98,7 +98,7 @@ QString QTorrentHandle::creation_date() const { return t ? misc::toQString(*t) : ""; #else boost::optional boostDate = torrent_handle::get_torrent_info().creation_date(); - return boostDate ? misc::boostTimeToQString(*boostDate) : ""; + return boostDate ? misc::toQString(*boostDate) : ""; #endif }