Browse Source

修复gps位置更新时时间格式错误的问题 #971

648540858 2 years ago
parent
commit
2e399faf41
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/java/com/genersoft/iot/vmp/gb28181/utils/SipUtils.java

+ 1 - 1
src/main/java/com/genersoft/iot/vmp/gb28181/utils/SipUtils.java

@@ -261,6 +261,6 @@ public class SipUtils {
                 return null;
             }
         }
-        return localDateTime.format(DateUtil.formatterISO8601);
+        return localDateTime.format(DateUtil.formatter);
     }
 }