Merge branch 'master' into develop

This commit is contained in:
Barış Soner Uşaklı
2025-12-05 12:28:29 -05:00
2 changed files with 2 additions and 5 deletions

View File

@@ -26,9 +26,6 @@ jobs:
- os: ubuntu-24.04-arm - os: ubuntu-24.04-arm
platforms: linux/arm64 platforms: linux/arm64
required: true required: true
- os: ubuntu-24.04-arm
platforms: linux/arm/v7
required: false
continue-on-error: ${{ !matrix.required }} continue-on-error: ${{ !matrix.required }}
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
@@ -131,4 +128,4 @@ jobs:
$(printf '${{ env.IMAGE }}@sha256:%s ' *) $(printf '${{ env.IMAGE }}@sha256:%s ' *)
- name: Inspect image - name: Inspect image
run: | run: |
docker buildx imagetools inspect ${{ env.IMAGE }}:${{ steps.meta.outputs.version }} docker buildx imagetools inspect ${{ env.IMAGE }}:${{ steps.meta.outputs.version }}

View File

@@ -126,7 +126,7 @@ categoriesAPI.getTopics = async (caller, data) => {
throw new Error('[[error:no-privileges]]'); throw new Error('[[error:no-privileges]]');
} }
const infScrollTopicsPerPage = 20; const infScrollTopicsPerPage = settings.topicsPerPage;
const sort = data.sort || data.categoryTopicSort || meta.config.categoryTopicSort || 'recently_replied'; const sort = data.sort || data.categoryTopicSort || meta.config.categoryTopicSort || 'recently_replied';
let start = Math.max(0, parseInt(data.after || 0, 10)); let start = Math.max(0, parseInt(data.after || 0, 10));