Differences From Artifact [f939691250]:
- File src/exceptions/MTXJoinRoomFailedException.m — part of check-in [b1d8afb546] at 2020-10-03 17:40:47 on branch trunk — Add support for joining rooms (user: js, size: 2094) [annotate] [blame] [check-ins using]
To Artifact [6d2b4b0f4f]:
- File
src/exceptions/MTXJoinRoomFailedException.m
— part of check-in
[17e299f073]
at
2020-10-03 21:56:23
on branch trunk
— Initial support for sync
Only sends the sync, does not do anything with the response yet. Handling the response will be implemented in the next several commits, piece by piece. (user: js, size: 2131) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
61 62 63 64 65 66 67 | [super dealloc]; } - (OFString *)description { return [OFString stringWithFormat: | | | | 61 62 63 64 65 66 67 68 69 70 71 | [super dealloc]; } - (OFString *)description { return [OFString stringWithFormat: @"Failed to join room %@ for %@ with status code %d: %@", _room, self.client.userID, self.statusCode, self.response]; } @end |