MCPcopy Create free account
hub / github.com/YACReader/yacreader / getSeriesCover

Method getSeriesCover

YACReaderLibrary/comic_vine/comic_vine_client.cpp:136–143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

134}
135
136void ComicVineClient::getSeriesCover(const QString &url)
137{
138 auto search = new HttpWorker(url, userAgent);
139 connect(search, &HttpWorker::dataReady, this, &ComicVineClient::seriesCover);
140 connect(search, &HttpWorker::timeout, this, &ComicVineClient::timeOut); // TODO
141 connect(search, &QThread::finished, search, &QObject::deleteLater);
142 search->get();
143}
144
145// CV_COMIC_IDS
146void ComicVineClient::getVolumeComicsInfo(const QString &idVolume, int page)

Callers 1

loadVolumeInfoMethod · 0.80

Calls 1

getMethod · 0.45

Tested by

no test coverage detected