Skip to content

Commit

Permalink
fix: location and apple location must match
Browse files Browse the repository at this point in the history
  • Loading branch information
focux committed Oct 21, 2019
1 parent 28a0b15 commit 6e351b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/event.js
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ class ICalEvent {
}

this._data.appleLocation = appleLocation;
this._data.location = null;
this._data.location = this._data.appleLocation.title + '\n' + this._data.appleLocation.address;
return this;
}

Expand Down

0 comments on commit 6e351b3

Please sign in to comment.