-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixed a bug with empty events When an event was empty (i.e. no object, no summary, almost nothing but an id, uid), the event parsing lead to a bug that would cause the application to fail loading the table of people or locations. This was mainly due to the start and end dates not being declared as possibly null when they should have been. I also cleaned up some code with array accesses that would spam a lot of errors in the Nextcloud logging because the offsets do not exist. I just used null-safe operators to set default values when this happens. * v0.0.37 --------- Co-authored-by: Matthieu Renard <[email protected]> Co-authored-by: Benjamin <[email protected]>
- Loading branch information
1 parent
5558484
commit 6f0abf7
Showing
3 changed files
with
20 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,15 +4,15 @@ | |
<name>Where am I ?</name> | ||
<summary><![CDATA[Is a simple application to locate everybody in your company.]]></summary> | ||
<description><![CDATA[Is a simple application to locate everybody in your company.]]></description> | ||
<version>0.0.36</version> | ||
<version>0.0.37</version> | ||
<licence>agpl</licence> | ||
<author mail="[email protected]" homepage="https://www.adacis.net">ADACIS</author> | ||
<namespace>Whereami</namespace> | ||
<category>office</category> | ||
<category>organization</category> | ||
<bugs>https://github.com/Adacis/whereami/issues</bugs> | ||
<dependencies> | ||
<nextcloud min-version="29" max-version="29"/> | ||
<nextcloud min-version="29" max-version="31"/> | ||
</dependencies> | ||
<settings> | ||
<admin>OCA\Whereami\Settings\WhereamiAdmin</admin> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters