fixed update available

This commit is contained in:
kremsy
2014-01-12 00:02:17 +01:00
committed by Steffen Schröder
parent b8758138b3
commit de96708156
3 changed files with 4 additions and 4 deletions

View File

@ -90,7 +90,7 @@ class Map {
* @return bool
*/
public function updateAvailable() {
if($this->lastUpdate < $this->mx->updated || $this->uid != $this->mx->uid) {
if($this->mx != null && ($this->lastUpdate < $this->mx->updated || $this->uid != $this->mx->uid)) {
return true;
} else {
return false;