From f7ebc8831b032196e6695fa22647717a7bf2b55c Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Sun, 22 Aug 2021 14:52:40 +0300 Subject: ActivityPub: fix empty object serialization --- .../api/activity/helpers/ContextTypeFilter.java | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/main/java/com/juick/www/api/activity/helpers/ContextTypeFilter.java (limited to 'src/main/java/com/juick/www/api/activity/helpers') diff --git a/src/main/java/com/juick/www/api/activity/helpers/ContextTypeFilter.java b/src/main/java/com/juick/www/api/activity/helpers/ContextTypeFilter.java new file mode 100644 index 00000000..e8a1dfab --- /dev/null +++ b/src/main/java/com/juick/www/api/activity/helpers/ContextTypeFilter.java @@ -0,0 +1,29 @@ +/* + * Copyright (C) 2008-2021, Juick + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +package com.juick.www.api.activity.helpers; + +public class ContextTypeFilter { + + @Override + public boolean equals(Object obj) { + if (obj == null || !(obj instanceof String)) { + return true; + } + return ((String)obj).equals("Context"); + } +} -- cgit v1.2.3