Merge "Correctly update locally cached seenTime"

This commit is contained in:
jenkins-bot 2016-05-13 11:21:37 +00:00 committed by Gerrit Code Review
commit 8c9692e980

View file

@ -297,9 +297,9 @@
// Normalize if using 'all'
types = type === 'all' ? [ 'alert', 'message' ] : [ type ];
for ( i = 0; i < type.length; i++ ) {
for ( i = 0; i < types.length; i++ ) {
// Update all types
this.seenTime[ type[ i ] ] = time;
this.seenTime[ types[ i ] ] = time;
}
};