Registrations currently disabled due to spam. Contact me externally if you need an account

Commit b8498ad7 authored by Bradley Hilton's avatar Bradley Hilton
Browse files

Actually use the queryParams for the limit..whooops

parent 1b13e1f7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -119,7 +119,7 @@ RocketChat.API.v1.addRoute('users.list', { authRequired: true }, {
		let limit = -1;

		if (typeof this.queryParams.limit !== 'undefined') {
			limit = parseInt(limit);
			limit = parseInt(this.queryParams.limit);
		}

		let result = undefined;