Browse Source
Merge pull request #439 from hotcoffie/wvp-28181-2.0
增强查询录像列表接口兼容性
pull/444/head
648540858
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
8 additions and
8 deletions
-
src/main/java/com/genersoft/iot/vmp/gb28181/utils/XmlUtil.java
|
@ -62,7 +62,7 @@ public class XmlUtil { |
|
|
} |
|
|
} |
|
|
Element e = em.element(tag); |
|
|
Element e = em.element(tag); |
|
|
//
|
|
|
//
|
|
|
return null == e ? null : e.getText(); |
|
|
return null == e ? null : e.getText().trim(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|