summaryrefslogtreecommitdiff
path: root/app/Models/Feed.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Models/Feed.php')
-rw-r--r--app/Models/Feed.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/Feed.php b/app/Models/Feed.php
index 0fc92f0bd..dd1c8ce22 100644
--- a/app/Models/Feed.php
+++ b/app/Models/Feed.php
@@ -212,7 +212,7 @@ class FreshRSS_Feed extends Minz_Model {
$this->description = $value === null ? '' : $value;
}
public function _lastUpdate($value) {
- $this->lastUpdate = $value;
+ $this->lastUpdate = intval($value);
}
public function _priority($value) {
$this->priority = intval($value);