fix: KVStorage deleteValue버그 수정

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