浏览代码

Cast Number settings as integer instead of float

Bubka 3 年之前
父节点
当前提交
6fab74368f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/Services/AppstractOptionsService.php

+ 1 - 1
app/Services/AppstractOptionsService.php

@@ -86,7 +86,7 @@ class AppstractOptionsService implements SettingServiceInterface
      */
     private function restoreType($value)
     {
-        $value = is_numeric($value) ? (float) $value : $value;
+        $value = is_numeric($value) ? (int) $value : $value;
 
         if( $value === '{{}}' ) {
             return false;