Skip to content

Commit c2d25fc

Browse files
committed
nits
1 parent badf39c commit c2d25fc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Sources/ParseSwift/LiveQuery/ParseLiveQuery.swift

+3-1
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,8 @@ extension ParseLiveQuery: LiveQuerySocketDelegate {
344344
guard let parseError = try? ParseCoding.jsonDecoder().decode(ParseError.self, from: data) else {
345345
//Turn LiveQuery error into ParseError
346346
let parseError = ParseError(code: .unknownError,
347-
message: "ParseLiveQuery error code: \(error.code), message: \(error.error)")
347+
// swiftlint:disable:next line_length
348+
message: "ParseLiveQuery Error: code: \(error.code), message: \(error.error)")
348349
self.notificationQueue.async {
349350
self.receiveDelegate?.received(parseError)
350351
}
@@ -532,6 +533,7 @@ extension ParseLiveQuery {
532533
self.resumeTask()
533534
self.attempts += 1
534535
let error = ParseError(code: .unknownError,
536+
// swiftlint:disable:next line_length
535537
message: "ParseLiveQuery Error: attempted to open socket \(self.attempts) time(s)")
536538
completion(error)
537539
}

0 commit comments

Comments
 (0)