>>/11178/
*location of the torrent to see that it exists

Alternatively: use a non-IPFS-mount path for torrents with a bajillion files. That would likely work better. Should still open that issue though.

Main or starting point of qBittorrent I guess:
https://github.com/qbittorrent/qBittorrent/blob/master/src/app/main.cpp

 >>/11179/
> transferlistmodel.cpp
Has this text:
> BitTorrent::TorrentState::CheckingResumeData
Means that CheckingResumeData is a member of the TorrentState namespace within the BitTorrent class. Something on that in this, definition I think:
> https://github.com/qbittorrent/qBittorrent/blob/master/src/base/bittorrent/torrent.h
only look in other ./src/base/ files for CheckingResumeData - other folders seem to not matter for defining that. This
> https://github.com/qbittorrent/qBittorrent/blob/master/src/base/bittorrent/torrentimpl.cpp
says
> if (m_nativeStatus.state == lt::torrent_status::checking_resume_data) { m_state = TorrentState::CheckingResumeData; }
so figure out the things in the condition there...