Skip to content

Commit afa8745

Browse files
committed
Fix line length SwiftLint error
Signed-off-by: Claudio Cambra <[email protected]>
1 parent cedcb5a commit afa8745

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

Sources/NextcloudKit/NextcloudKit.swift

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,18 @@ open class NextcloudKit {
7878
if nkCommonInstance.nksessions.filter({ $0.account == account }).first != nil {
7979
return updateSession(account: account, urlBase: urlBase, userId: userId, password: password, userAgent: userAgent, nextcloudVersion: nextcloudVersion)
8080
}
81-
let nkSession = NKSession(nkCommonInstance: nkCommonInstance, urlBase: urlBase, user: user, userId: userId, password: password, account: account, userAgent: userAgent, nextcloudVersion: nextcloudVersion, groupIdentifier: groupIdentifier, httpMaximumConnectionsPerHost: httpMaximumConnectionsPerHost, httpMaximumConnectionsPerHostInDownload: httpMaximumConnectionsPerHostInDownload, httpMaximumConnectionsPerHostInUpload: httpMaximumConnectionsPerHostInUpload)
81+
let nkSession = NKSession(nkCommonInstance: nkCommonInstance,
82+
urlBase: urlBase,
83+
user: user,
84+
userId: userId,
85+
password: password,
86+
account: account,
87+
userAgent: userAgent,
88+
nextcloudVersion: nextcloudVersion,
89+
groupIdentifier: groupIdentifier,
90+
httpMaximumConnectionsPerHost: httpMaximumConnectionsPerHost,
91+
httpMaximumConnectionsPerHostInDownload: httpMaximumConnectionsPerHostInDownload,
92+
httpMaximumConnectionsPerHostInUpload: httpMaximumConnectionsPerHostInUpload)
8293

8394
nkCommonInstance.nksessions.append(nkSession)
8495
}

0 commit comments

Comments
 (0)