mirror of
https://framagit.org/tom79/fedilab-tube
synced 2025-06-05 21:09:11 +02:00
Cannot comment reply with Pleroma accounts
This commit is contained in:
@ -11,8 +11,8 @@ android {
|
||||
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 30
|
||||
versionCode 36
|
||||
versionName "1.12.0"
|
||||
versionCode 37
|
||||
versionName "1.12.1"
|
||||
multiDexEnabled true
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
@ -54,12 +54,13 @@ interface MastodonService {
|
||||
@Query("q") String messageURL
|
||||
);
|
||||
|
||||
@FormUrlEncoded
|
||||
@POST("statuses")
|
||||
Call<Status> postReply(
|
||||
@Header("Authorization") String credentials,
|
||||
@Query("in_reply_to_id") String inReplyToId,
|
||||
@Query("status") String content,
|
||||
@Query("visibility") String visibility
|
||||
@Field("in_reply_to_id") String inReplyToId,
|
||||
@Field("status") String content,
|
||||
@Field("visibility") String visibility
|
||||
);
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user