summaryrefslogtreecommitdiffstats
path: root/js/public/app.js
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-04-06 15:26:45 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-04-06 15:26:58 +0200
commitdbd18a20993221baf9e851fbd8eba1a48c411b3d (patch)
treed6bb96ddde1d70e960e1e8fc7b3d2d8a1ce3ca79 /js/public/app.js
parent3c4044970e38820d67560e219dd94dc9e96b0387 (diff)
get rid of deprecated getParams and renderJSON method to ease transition to built in appframework
Diffstat (limited to 'js/public/app.js')
-rw-r--r--js/public/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/public/app.js b/js/public/app.js
index 5982ab587..1b393b81f 100644
--- a/js/public/app.js
+++ b/js/public/app.js
@@ -2842,7 +2842,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
lastChange = this._lastFeedChange;
(function(lastChange, offset, loading, onSuccess) {
return successCallbackWrapper = function(data) {
- if (data.data.items.length === 0 && lastChange === _this._lastFeedChange && offset !== 0) {
+ if (data.items.length === 0 && lastChange === _this._lastFeedChange && offset !== 0) {
_this._preventUselessAutoPageRequest = true;
}
onSuccess(data);