mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
Make settingValue function silent for undefined inde
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
2019-01-28 DariusIII
|
||||
* Chg: Make settingValue function silent for undefined index
|
||||
* Fix: Fix check for not empty collections table in Forking class
|
||||
* Chg: Update composer/ca-bundle (1.1.3 => 1.1.4)
|
||||
* Fix: Fix wrong date calculation in safeBackfill function
|
||||
|
||||
@@ -173,7 +173,7 @@ class Settings extends Model
|
||||
[
|
||||
'section' => $match[1] ?? '',
|
||||
'subsection' => $match[2] ?? '',
|
||||
'name' => $match[3],
|
||||
'name' => $match[3] ?? '',
|
||||
]
|
||||
)->value('value');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user