mirror of
https://framagit.org/tom79/fedilab-tube
synced 2025-04-21 22:07:18 +02:00
Cannot comment reply with Pleroma accounts
This commit is contained in:
parent
cef227ba42
commit
c8c5e56a17
@ -11,8 +11,8 @@ android {
|
|||||||
|
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 30
|
targetSdkVersion 30
|
||||||
versionCode 36
|
versionCode 37
|
||||||
versionName "1.12.0"
|
versionName "1.12.1"
|
||||||
multiDexEnabled true
|
multiDexEnabled true
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
|
@ -54,12 +54,13 @@ interface MastodonService {
|
|||||||
@Query("q") String messageURL
|
@Query("q") String messageURL
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@FormUrlEncoded
|
||||||
@POST("statuses")
|
@POST("statuses")
|
||||||
Call<Status> postReply(
|
Call<Status> postReply(
|
||||||
@Header("Authorization") String credentials,
|
@Header("Authorization") String credentials,
|
||||||
@Query("in_reply_to_id") String inReplyToId,
|
@Field("in_reply_to_id") String inReplyToId,
|
||||||
@Query("status") String content,
|
@Field("status") String content,
|
||||||
@Query("visibility") String visibility
|
@Field("visibility") String visibility
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
@ -0,0 +1,16 @@
|
|||||||
|
Added:
|
||||||
|
- Notification counter
|
||||||
|
- Mark all notifications as read
|
||||||
|
- Google: donations via Google Billing
|
||||||
|
|
||||||
|
Changed:
|
||||||
|
- Improve layout for lives
|
||||||
|
- Move the account item
|
||||||
|
|
||||||
|
Fixed:
|
||||||
|
- Cannot connect Pleroma/Mastodon accounts
|
||||||
|
- Cannot comment/reply with Pleroma accounts
|
||||||
|
- Issue with captions when changing the resolution
|
||||||
|
- Keep playing when screen is off
|
||||||
|
- Creating a Playlist without description crashes
|
||||||
|
- Live not starting issue
|
Loading…
x
Reference in New Issue
Block a user