Ensure that query/fragment/etc. don't get embedded into local filenames (#989)

when downloading #886
This commit is contained in:
Levi Bard 2019-01-15 20:57:13 +01:00 committed by Konrad Pozniak
parent 71fb4db915
commit 922f165f95

View file

@ -209,8 +209,7 @@ class ViewMediaActivity : BaseActivity(), ViewImageFragment.PhotoActionsListener
PERMISSIONS_REQUEST_WRITE_EXTERNAL_STORAGE)
} else {
val url = attachments!![viewPager.currentItem].attachment.url
val filename = File(url).name
val filename = Uri.parse(url).lastPathSegment
val toastText = String.format(resources.getString(R.string.download_image), filename)
Toast.makeText(applicationContext, toastText, Toast.LENGTH_SHORT).show()