elementary: don't crash if API is called after shutdown.

This commit is contained in:
Cedric BAIL 2017-09-26 10:07:29 -07:00
parent 0b8e3e6fcf
commit 8e5a79f957
1 changed files with 1 additions and 0 deletions

View File

@ -4307,6 +4307,7 @@ elm_config_web_backend_set(const char *backend)
EAPI const char *
elm_config_web_backend_get(void)
{
if (!_elm_config) return NULL;
return _elm_config->web_backend;
}