Start album cover request IDs at 1, so 0 can be invalid

This commit is contained in:
David Sansome 2012-02-26 15:12:39 +00:00
parent ab5ccf69da
commit 23724b667f
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@
AlbumCoverLoader::AlbumCoverLoader(QObject* parent)
: QObject(parent),
stop_requested_(false),
next_id_(0),
next_id_(1),
network_(new NetworkAccessManager(this)),
connected_spotify_(false)
{