1
0
mirror of https://github.com/altlinux/gpupdate.git synced 2025-03-21 18:50:38 +03:00

Added check for empty value

This commit is contained in:
Valery Sinelnikov 2023-12-04 18:26:29 +04:00
parent cadc3eda52
commit 1a288c84f5

View File

@ -284,7 +284,7 @@ class gsettings_applier_user(applier_frontend):
try:
entry = self.__wallpaper_entry
filter_result = self.storage.get_hkcu_entry(self.sid, entry)
if filter_result:
if filter_result and filter_result.data:
self.file_cache.store(filter_result.data)
except NotUNCPathError:
...