Merge pull request #439 from hotcoffie/wvp-28181-2.0

增强查询录像列表接口兼容性
pull/441/head
648540858 2022-04-20 14:16:10 +08:00 committed by GitHub
commit 7145ce07e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 8 deletions

View File

@ -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();
} }
/** /**