fix copy url to clipboard action for undownloaded files
This commit is contained in:
parent
10382e83bf
commit
4a9dfb9567
|
@ -96,7 +96,8 @@ public class ShareUtil {
|
||||||
resId = R.string.file_url;
|
resId = R.string.file_url;
|
||||||
url = message.getFileParams().url.toString();
|
url = message.getFileParams().url.toString();
|
||||||
} else {
|
} else {
|
||||||
url = message.getBody().trim();
|
final Message.FileParams fileParams = message.getFileParams();
|
||||||
|
url = (fileParams != null && fileParams.url != null) ? fileParams.url.toString() : message.getBody().trim();
|
||||||
resId = R.string.file_url;
|
resId = R.string.file_url;
|
||||||
}
|
}
|
||||||
if (activity.copyTextToClipboard(url, resId)) {
|
if (activity.copyTextToClipboard(url, resId)) {
|
||||||
|
|
Loading…
Reference in a new issue