From 73d9d87b4dc8087f8591ee2b8849a7292f8a4e3a Mon Sep 17 00:00:00 2001 From: Ersun Warncke Date: Mon, 20 Apr 2020 05:56:26 -0400 Subject: [PATCH] fix typo GitOrigin-RevId: e0d95acb0c871558ed50b7456ca5783c893639fb --- .../app/src/Features/ThirdPartyDataStore/TpdsController.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/web/app/src/Features/ThirdPartyDataStore/TpdsController.js b/services/web/app/src/Features/ThirdPartyDataStore/TpdsController.js index 1ba7f2f670..b151615c66 100644 --- a/services/web/app/src/Features/ThirdPartyDataStore/TpdsController.js +++ b/services/web/app/src/Features/ThirdPartyDataStore/TpdsController.js @@ -20,7 +20,7 @@ const Path = require('path') const metrics = require('metrics-sharelatex') const NotificationsBuilder = require('../Notifications/NotificationsBuilder') const AuthenticationController = require('../Authentication/AuthenticationController') -const TdpsQueueManager = require('./TpdsQueueManager').promises +const TpdsQueueManager = require('./TpdsQueueManager').promises module.exports = { // mergeUpdate and deleteUpdate are used by Dropbox, where the project is only passed as the name, as the @@ -136,7 +136,7 @@ module.exports = { async getQueues(req, res, next) { const userId = AuthenticationController.getLoggedInUserId(req) try { - res.json(await TdpsQueueManager.getQueues(userId)) + res.json(await TpdsQueueManager.getQueues(userId)) } catch (err) { next(err) }