fix: KVStorage deleteValue버그 수정

This commit is contained in:
2022-05-09 21:42:17 +09:00
parent b738984235
commit fbcfbb7156
+4 -1
View File
@@ -276,7 +276,10 @@ class KVStorage
{ {
$key = Util::valueFromEnum($key); $key = Util::valueFromEnum($key);
$this->cacheData->remove($key, null); if($this->cacheData !== null){
$this->cacheData->remove($key, null);
}
return $this->deleteDBValue($key); return $this->deleteDBValue($key);
} }