Added provider documentation

This commit is contained in:
M66B
2021-07-08 19:46:44 +02:00
parent 26fcb4e993
commit e8eb5e3f7b
2 changed files with 5 additions and 0 deletions

View File

@@ -161,6 +161,9 @@ public class EmailProvider implements Parcelable {
provider.useip = xml.getAttributeBooleanValue(null, "useip", true);
provider.appPassword = xml.getAttributeBooleanValue(null, "appPassword", false);
provider.link = xml.getAttributeValue(null, "link");
String documentation = xml.getAttributeValue(null, "documentation");
if (documentation != null)
provider.documentation = new StringBuilder(documentation);
provider.type = xml.getAttributeValue(null, "type");
String user = xml.getAttributeValue(null, "user");
if ("local".equals(user))