Selaa lähdekoodia

Fix method invocation ambiguity

Dominik Schmidt 5 vuotta sitten
vanhempi
commit
ae73e074b1
2 muutettua tiedostoa jossa 5 lisäystä ja 4 poistoa
  1. 3 3
      src/player/CodecsComponent.cpp
  2. 2 1
      src/player/CodecsComponent.h

+ 3 - 3
src/player/CodecsComponent.cpp

@@ -685,9 +685,9 @@ static Downloader::HeaderList getPlexHeaders()
   Downloader::HeaderList headers;
   QString auth = SystemComponent::Get().authenticationToken();
   if (auth.size())
-    headers.append({"X-Plex-Token", auth});
-  headers.append({"X-Plex-Product", WITH_CODECS ? "Plex Media Player" : "openpmp"});
-  headers.append({"X-Plex-Platform", "Konvergo"});
+    headers.append(Downloader::Header{"X-Plex-Token", auth});
+  headers.append(Downloader::Header{"X-Plex-Product", WITH_CODECS ? "Plex Media Player" : "openpmp"});
+  headers.append(Downloader::Header{"X-Plex-Platform", "Konvergo"});
   return headers;
 }
 

+ 2 - 1
src/player/CodecsComponent.h

@@ -75,7 +75,8 @@ class Downloader : public QObject
 {
   Q_OBJECT
 public:
-  typedef QList<QPair<QString, QString>> HeaderList;
+  typedef QPair<QString, QString> Header;
+  typedef QList<Header> HeaderList;
   explicit Downloader(QVariant userData, const QUrl& url, const HeaderList& headers, QObject* parent);
 Q_SIGNALS:
   void done(QVariant userData, bool success, const QByteArray& data);