Update to latest RSCore

This commit is contained in:
Nate Weaver
2020-03-18 19:58:29 -05:00
parent 33081a3443
commit 7a9095b63a
44 changed files with 116 additions and 114 deletions

View File

@@ -150,7 +150,7 @@ class ScriptableAccount: NSObject, UniqueIdScriptingObject, ScriptingObjectConta
@objc(opmlRepresentation)
var opmlRepresentation:String {
return self.account.OPMLString(indentLevel:0, strictConformance: true)
return self.account.OPMLString(indentLevel:0, allowCustomAttributes: false)
}
@objc(accountType)
@@ -168,6 +168,6 @@ class ScriptableAccount: NSObject, UniqueIdScriptingObject, ScriptingObjectConta
case .newsBlur:
osType = "NBlr"
}
return osType.fourCharCode()
return osType.fourCharCode
}
}