Closed doekenorg closed 2 years ago
MR Resolves #104
The default value of true will not be returned by get_plugin_setting(). This will return null by default. So we apply the ?? operator and return true as the default value.
true
get_plugin_setting()
null
??
MR Resolves #104
The default value of
true
will not be returned byget_plugin_setting()
. This will returnnull
by default. So we apply the??
operator and returntrue
as the default value.