Fix typo: customFolderSubfix to customFolderSuffix

Corrects a typo in both ApplicationProperties.java and settings.yml.template, renaming 'customFolderSubfix' to 'customFolderSuffix' for consistency and clarity.
This commit is contained in:
Ludy87 2025-12-09 10:47:38 +01:00
parent 0bca358838
commit 115d81a049
No known key found for this signature in database
GPG Key ID: 92696155E0220F94
2 changed files with 2 additions and 2 deletions

View File

@ -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<Long> allowUserIDs = new ArrayList<>();
private Boolean enableAllowChannelIDs = false;

View File

@ -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