Fix null pointer exception
This commit is contained in:
parent
2ad3c094fd
commit
703f1f92ac
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ class ConfigFragment : PreferenceFragmentCompat(), Preference.OnPreferenceChange
|
|||
putWithDefault("tls", tls)
|
||||
putWithDefault("host", host.text, "cloudfront.com")
|
||||
putWithDefault("path", path.text, "/")
|
||||
putWithDefault("certRaw", certRaw.text.replace("\n", ""), "")
|
||||
putWithDefault("certRaw", certRaw.text?.replace("\n", ""), "")
|
||||
putWithDefault("loglevel", loglevel.value, "warning")
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue