From 115d81a049549815f047aa09924ddfb82abe5eac Mon Sep 17 00:00:00 2001 From: Ludy87 Date: Tue, 9 Dec 2025 10:47:38 +0100 Subject: [PATCH] Fix typo: customFolderSubfix to customFolderSuffix Corrects a typo in both ApplicationProperties.java and settings.yml.template, renaming 'customFolderSubfix' to 'customFolderSuffix' for consistency and clarity. --- .../stirling/software/common/model/ApplicationProperties.java | 2 +- app/core/src/main/resources/settings.yml.template | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/common/src/main/java/stirling/software/common/model/ApplicationProperties.java b/app/common/src/main/java/stirling/software/common/model/ApplicationProperties.java index ad04ff4b6..6c7a7f673 100644 --- a/app/common/src/main/java/stirling/software/common/model/ApplicationProperties.java +++ b/app/common/src/main/java/stirling/software/common/model/ApplicationProperties.java @@ -584,7 +584,7 @@ public class ApplicationProperties { private String botToken; private String botUsername; private String pipelineInboxFolder = "telegram"; - private Boolean customFolderSubfix = false; + private Boolean customFolderSuffix = false; private Boolean enableAllowUserIDs = false; private List allowUserIDs = new ArrayList<>(); private Boolean enableAllowChannelIDs = false; diff --git a/app/core/src/main/resources/settings.yml.template b/app/core/src/main/resources/settings.yml.template index fd1ad9754..58de2394f 100644 --- a/app/core/src/main/resources/settings.yml.template +++ b/app/core/src/main/resources/settings.yml.template @@ -110,7 +110,7 @@ telegram: botToken: '' # Telegram bot token obtained from BotFather botUsername: '' # Telegram bot username (without @) pipelineInboxFolder: telegram # Name of the pipeline inbox folder for Telegram uploads - customFolderSubfix: true # set to 'true' to allow users to specify custom target folders via UserID + customFolderSuffix: true # set to 'true' to allow users to specify custom target folders via UserID enableAllowUserIDs: true # set to 'true' to restrict access to specific Telegram user IDs allowUserIDs: [] # List of allowed Telegram user IDs (e.g. [123456789, 987654321]). Leave empty to allow all users. enableAllowChannelIDs: true # set to 'true' to restrict access to specific Telegram channel IDs