And it still doesnt work
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
package org.joinmastodon.android.api.requests.lists;
|
||||
|
||||
import android.app.ListFragment;
|
||||
|
||||
import org.joinmastodon.android.api.MastodonAPIRequest;
|
||||
|
||||
public class DeleteList extends MastodonAPIRequest<Object> {
|
||||
public DeleteList(String listId){
|
||||
super(HttpMethod.DELETE, "/lists/"+listId, Object.class);
|
||||
public class DeleteList extends MastodonAPIRequest<ListFragment> {
|
||||
public DeleteList(String id){
|
||||
super(HttpMethod.DELETE, "/lists/"+id, ListFragment.class);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user