Push notification not working when device is locked or idle for too long

push notification not working when device is locked or idle for too long. I used exactly same code in here Ionic Docs - Ionic Documentation

.run(function($ionicPlatform) {
$ionicPlatform.ready(function() {
var push = new Ionic.Push({
“debug”: true
});

push.register(function(token) {
  console.log("Device token:",token.token);
  push.saveToken(token);  // persist the token in the Ionic Platform
});

});
})