mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-08 11:02:24 +02:00
Update libraries/networking/src/ResourceRequest.cpp
Co-authored-by: David Rowe <david@ctrlaltstudio.com>
This commit is contained in:
parent
ae7aa3eb88
commit
a7fb294a1b
1 changed files with 2 additions and 2 deletions
|
@ -19,8 +19,8 @@
|
|||
#include <QtCore/QThread>
|
||||
|
||||
QString ResourceRequest::toHttpDateString(uint64_t msecsSinceEpoch) {
|
||||
return QLocale::c()
|
||||
.toString(QDateTime::fromMSecsSinceEpoch(msecsSinceEpoch), QLatin1String("ddd, dd MMM yyyy hh:mm:ss 'GMT'"))
|
||||
return QDateTime::fromMSecsSinceEpoch(msecsSinceEpoch)
|
||||
.toString("ddd, dd MMM yyyy hh:mm:ss 'GMT'")
|
||||
.toLatin1();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue