ResponseUnmarshaller responseUnmarshaller = new ResponseUnmarshaller(store, xmlr);
responseUnmarshaller.skip();
if (!"album".equals(xmlr.getLocalName())) {
throw new DespotifyException("Expected document root to be of type <album>");
}
album = responseUnmarshaller.unmarshallAlbum(new Date());
} catch (XMLStreamException e) {
throw new DespotifyException(e);
}
if (!this.album.equals(album)) {