diff --git a/.github/workflows/ci_ubuntu.yaml b/.github/workflows/ci_ubuntu.yaml index e19ea90e8..19bd0da25 100644 --- a/.github/workflows/ci_ubuntu.yaml +++ b/.github/workflows/ci_ubuntu.yaml @@ -94,6 +94,8 @@ jobs: - name: Run CodeQL analysis uses: github/codeql-action/analyze@v2 if: startsWith(matrix.libt_version, 2) && (matrix.qbt_gui == 'GUI=ON') && startsWith(matrix.qt_version, 6) + with: + category: ${{ github.base_ref || github.ref_name }} - name: Prepare build artifacts run: | diff --git a/cmake/Modules/CommonConfig.cmake b/cmake/Modules/CommonConfig.cmake index 1db86d8a5..eb9806d72 100644 --- a/cmake/Modules/CommonConfig.cmake +++ b/cmake/Modules/CommonConfig.cmake @@ -12,7 +12,7 @@ set(CMAKE_AUTORCC_OPTIONS --compress 9 --threshold 5) add_library(qbt_common_cfg INTERFACE) -# Full C++ 20 support is required +# C++ 20 support is required # See also https://cmake.org/cmake/help/latest/prop_gbl/CMAKE_CXX_KNOWN_FEATURES.html # for a breakdown of the features that CMake recognizes for each C++ standard target_compile_features(qbt_common_cfg INTERFACE diff --git a/src/gui/addnewtorrentdialog.cpp b/src/gui/addnewtorrentdialog.cpp index 88de009e9..947a91321 100644 --- a/src/gui/addnewtorrentdialog.cpp +++ b/src/gui/addnewtorrentdialog.cpp @@ -151,8 +151,8 @@ public: ? BitTorrent::TorrentContentLayout::NoSubfolder : BitTorrent::TorrentContentLayout::Subfolder); - if (!m_filePriorities.isEmpty()) - m_filePriorities.resize(filesCount(), BitTorrent::DownloadPriority::Normal); + if (const int fileCount = filesCount(); !m_filePriorities.isEmpty() && (fileCount >= 0)) + m_filePriorities.resize(fileCount, BitTorrent::DownloadPriority::Normal); } bool hasMetadata() const override