From 4c83c8d69b5b2e4c1b3d596b77edce9f5906ae1d Mon Sep 17 00:00:00 2001 From: TheBeastLT Date: Tue, 31 Oct 2023 14:25:03 +0200 Subject: [PATCH] bump version --- addon/lib/configuration.js | 4 ++-- addon/lib/manifest.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/addon/lib/configuration.js b/addon/lib/configuration.js index 4b9204c..0becee9 100644 --- a/addon/lib/configuration.js +++ b/addon/lib/configuration.js @@ -27,7 +27,7 @@ export const PreConfigurations = { } const keysToSplit = [Providers.key, LanguageOptions.key, QualityFilter.key, SizeFilter.key, DebridOptions.key]; -const keyToUppercase = [SizeFilter.key]; +const keysToUppercase = [SizeFilter.key]; export function parseConfiguration(configuration) { if (PreConfigurations[configuration]) { @@ -44,7 +44,7 @@ export function parseConfiguration(configuration) { keysToSplit .filter(key => configValues[key]) .forEach(key => configValues[key] = configValues[key].split(',') - .map(value => keyToUppercase.includes(key) ? value.toUpperCase() : value.toLowerCase())) + .map(value => keysToUppercase.includes(key) ? value.toUpperCase() : value.toLowerCase())) return configValues; } diff --git a/addon/lib/manifest.js b/addon/lib/manifest.js index c933cb3..d6462c1 100644 --- a/addon/lib/manifest.js +++ b/addon/lib/manifest.js @@ -10,7 +10,7 @@ const CatalogMochs = Object.values(MochOptions).filter(moch => moch.catalog); export function manifest(config = {}) { const defaultManifest = { id: 'com.stremio.torrentio.addon', - version: '0.0.13', + version: '0.0.14', name: 'Torrentio', description: getDescription(config), catalogs: getCatalogs(config),