WebAPI: return correct value for queued uploading state

PR #20651.
Closes #20648.
This commit is contained in:
Vladimir Golovnev 2024-04-04 08:41:25 +03:00 committed by GitHub
commit 67dfce7437
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -54,7 +54,7 @@ namespace
case BitTorrent::TorrentState::StoppedUploading:
return u"stoppedUP"_s;
case BitTorrent::TorrentState::QueuedUploading:
return u"stoppedUP"_s;
return u"queuedUP"_s;
case BitTorrent::TorrentState::StalledUploading:
return u"stalledUP"_s;
case BitTorrent::TorrentState::CheckingUploading: