mirror of
https://github.com/moparisthebest/Conversations
synced 2024-11-24 01:32:17 -05:00
image provider path name now with .webp ending
This commit is contained in:
parent
83e919f8af
commit
9a448f822f
@ -36,7 +36,9 @@ public class ImageProvider extends ContentProvider {
|
||||
throw new FileNotFoundException();
|
||||
}
|
||||
String conversationUuid = uuidsSplited[1];
|
||||
String messageUuid = uuidsSplited[2];
|
||||
String messageUuid = uuidsSplited[2].split("\\.")[0];
|
||||
|
||||
Log.d("xmppService","messageUuid="+messageUuid);
|
||||
|
||||
Conversation conversation = databaseBackend
|
||||
.findConversationByUuid(conversationUuid);
|
||||
@ -113,7 +115,8 @@ public class ImageProvider extends ContentProvider {
|
||||
.parse("content://eu.siacs.conversations.images/"
|
||||
+ message.getConversationUuid()
|
||||
+ "/"
|
||||
+ message.getUuid());
|
||||
+ message.getUuid()
|
||||
+ ".webp");
|
||||
}
|
||||
|
||||
public static Uri getIncomingContentUri() {
|
||||
|
@ -342,7 +342,7 @@ public class ConversationFragment extends Fragment {
|
||||
Intent shareIntent = new Intent();
|
||||
shareIntent.setAction(Intent.ACTION_SEND);
|
||||
shareIntent.putExtra(Intent.EXTRA_STREAM, ImageProvider.getContentUri(message));
|
||||
shareIntent.setType("image/*");
|
||||
shareIntent.setType("image/webp");
|
||||
startActivity(Intent.createChooser(shareIntent, getText(R.string.share_with)));
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user