public function getSongs($fetch = true)
 {
     if ($this->songs || !$fetch) {
         return $this->songs;
     }
     $this->songs = parent::getPlaylistSongs($this->getPlaylistID());
     return $this->songs;
 }