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
parent e4aad461c7
commit 67dfce7437

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: