Update to latest RSCore

Update use of OMPLString().
This commit is contained in:
Nate Weaver
2020-01-13 22:20:20 -06:00
parent 59de1edbfa
commit 6eac3781ba
11 changed files with 19 additions and 19 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)
}
@objc(accountType)

View File

@@ -110,7 +110,7 @@ class ScriptableFolder: NSObject, UniqueIdScriptingObject, ScriptingObjectContai
@objc(opmlRepresentation)
var opmlRepresentation:String {
return self.folder.OPMLString(indentLevel:0, strictConformance: true)
return self.folder.OPMLString(indentLevel:0)
}
}

View File

@@ -146,7 +146,7 @@ class ScriptableWebFeed: NSObject, UniqueIdScriptingObject, ScriptingObjectConta
@objc(opmlRepresentation)
var opmlRepresentation:String {
return self.webFeed.OPMLString(indentLevel:0, strictConformance: true)
return self.webFeed.OPMLString(indentLevel:0)
}
// MARK: --- scriptable elements ---