Fixed drawable tinting bug in geofavs list

This commit is contained in:
Daniele Verducci (Slimpenguin)
2022-01-17 08:19:00 +01:00
parent 4aae6e90be
commit b7f61846e3
4 changed files with 15 additions and 9 deletions
@@ -197,7 +197,7 @@ public class Geofavorite implements Serializable {
* @see "https://github.com/nextcloud/maps/blob/master/src/utils.js"
* @return the generated color or null for the default category
*/
public int categoryColor() {
public int categoryColor() {
// If category is default, return null: will be used Nextcloud's accent
if (this.category.equals(DEFAULT_CATEGORY))
return 0;