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

增强查询录像列表接口兼容性
This commit is contained in:
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

View File

@ -62,7 +62,7 @@ public class XmlUtil {
}
Element e = em.element(tag);
//
return null == e ? null : e.getText();
return null == e ? null : e.getText().trim();
}
/**