1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-12-10 07:22:27 +03:00

Happy linter, happy developer

This commit is contained in:
Will Hunt
2018-08-20 14:16:47 +01:00
parent 79ca68300c
commit df7dc04a1d

View File

@@ -2078,6 +2078,7 @@ MatrixClient.prototype.getEventTimeline = function(timelineSet, eventId) {
* *
* @param {string} roomId The ID of the room to look in * @param {string} roomId The ID of the room to look in
* @param {string} eventId The ID of the event to look for * @param {string} eventId The ID of the event to look for
* @param {module:client.callback} callback Optional.
* *
* @return {Promise} Resolves to an object containing the event. * @return {Promise} Resolves to an object containing the event.
*/ */
@@ -2091,7 +2092,7 @@ MatrixClient.prototype.fetchRoomEvent = function(roomId, eventId, callback) {
return this._http.authedRequest( return this._http.authedRequest(
callback, "GET", path, callback, "GET", path,
); );
} };
/** /**
* Makes a request to /messages with the appropriate lazy loading filter set. * Makes a request to /messages with the appropriate lazy loading filter set.