commit | 360e3c137d52c668915f49b0372019f2715d5bd3 | [log] [tgz] |
---|---|---|
author | Urs Wolfer <uwolfer@fwo.ch> | Wed Mar 09 20:00:40 2016 +0100 |
committer | Urs Wolfer <uwolfer@fwo.ch> | Wed Mar 09 20:00:40 2016 +0100 |
tree | 43ccde958ee8af498fbab46c73d5dc329554e934 | |
parent | 807dcd3d35f0cc7df2ff7caf576de3e08cd9d4ea [diff] |
Add missing Function#bind call Change-Id: I7a4639178455ce0fa990ae77979cc53cd5c38419
diff --git a/polygerrit-ui/app/elements/shared/gr-rest-api-interface/gr-rest-api-interface.js b/polygerrit-ui/app/elements/shared/gr-rest-api-interface/gr-rest-api-interface.js index f69f8b1..042e901 100644 --- a/polygerrit-ui/app/elements/shared/gr-rest-api-interface/gr-rest-api-interface.js +++ b/polygerrit-ui/app/elements/shared/gr-rest-api-interface/gr-rest-api-interface.js
@@ -104,7 +104,7 @@ }.bind(this)).catch(function(err) { this._sharedFetchPromises[url] = undefined; throw err; - }); + }.bind(this)); return this._sharedFetchPromises[url]; },