Skip to content

Commit

Permalink
Fix: Fix Admin Settings page when Watermark label selected
Browse files Browse the repository at this point in the history
  • Loading branch information
Koc committed Oct 14, 2024
1 parent 4d444ac commit 74520b2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/AppConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ class AppConfig {
'watermark_linkTagsList' => 'array'
];

private const INTEGER_KEYS = [
'watermark_allTagsList' => true,
'watermark_linkTagsList' => true,
];

public function __construct(
private IConfig $config,
private IAppManager $appManager,
Expand Down Expand Up @@ -118,6 +123,10 @@ public function getAppSettings() {
$result[$key] = $value === 'no' ? false : $value;
}
}
if (!empty(self::INTEGER_KEYS[$key])) {
$result[$key] = array_map('intval', $result[$key]);
}

return $result;
}

Expand Down

0 comments on commit 74520b2

Please sign in to comment.