Fixed browse photo history, confirm typo

This commit is contained in:
Igor Zhukov 2014-06-04 21:46:05 +04:00
parent 4926afff65
commit 50a951e577
2 changed files with 8 additions and 5 deletions

View File

@ -1017,7 +1017,6 @@ angular.module('myApp.controllers', [])
if (searchCachedResult.history.indexOf($scope.messageID) >= 0) {
list = searchCachedResult.history;
maxID = list[list.length - 1];
hasMore = list.length < searchCachedResult.count;
updatePrevNext();
}
@ -1050,10 +1049,14 @@ angular.module('myApp.controllers', [])
if (loadingPromise) return loadingPromise;
return loadingPromise = AppMessagesManager.getSearch(inputPeer, inputQuery, inputFilter, maxID).then(function (searchResult) {
maxID = searchResult.history[searchResult.history.length - 1];
list = list.concat(searchResult.history);
if (searchResult.history.length) {
maxID = searchResult.history[searchResult.history.length - 1];
list = list.concat(searchResult.history);
hasMore = list.length < searchResult.count;
} else {
hasMore = false;
}
hasMore = list.length < searchResult.count;
updatePrevNext();
loadingPromise = false;
});

View File

@ -20,7 +20,7 @@
</ng-pluralize>
</span>
<span ng-switch-when="FILE_CLIPBOARD_PASTE">Are you sure to send file(s) from clipboard?</span>
<span ng-switch-when="MESSAGE_DELETE">Are you sure to delete the message?</span>
<span ng-switch-when="MESSAGE_DELETE">Are you sure you want to delete the message?</span>
<div ng-switch-when="LOGIN_PHONE_CORRECT">
Is this phone number correct?
<div class="confirm_phone_number"> <span ng-bind="country_code"></span> <span ng-bind="phone_number"></span> </div>