[Android] Fix forum URL
Nicolas Pomepuy
git at videolan.org
Thu Aug 8 13:54:09 CEST 2019
vlc-android | branch: 3.2.x | Nicolas Pomepuy <nicolas.pomepuy at gmail.com> | Wed Aug 7 13:09:42 2019 +0200| [f0d9f9c470af3a4065cf4d251957a7899a29f5f9] | committer: Geoffrey Métais
Fix forum URL
(cherry picked from commit fa4ff830322dbf65980396e7ac69c5c8590888d6)
> https://code.videolan.org/videolan/vlc-android/commit/f0d9f9c470af3a4065cf4d251957a7899a29f5f9
---
vlc-android/src/org/videolan/vlc/gui/SendCrashActivity.kt | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/vlc-android/src/org/videolan/vlc/gui/SendCrashActivity.kt b/vlc-android/src/org/videolan/vlc/gui/SendCrashActivity.kt
index 815e93f24..c239b8088 100644
--- a/vlc-android/src/org/videolan/vlc/gui/SendCrashActivity.kt
+++ b/vlc-android/src/org/videolan/vlc/gui/SendCrashActivity.kt
@@ -142,7 +142,7 @@ class SendCrashActivity : AppCompatActivity(), DebugLogService.Client.Callback {
binding = DataBindingUtil.setContentView(this, R.layout.send_crash_activity)
binding.reportBugButton.setOnClickListener {
- startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("https://forum.videolan.org/viewforum.php?f=35&sid=3601faccf00dd653f9be3f8f9ea897cc")))
+ startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("https://forum.videolan.org/viewforum.php?f=35")))
finish()
}
binding.reportCrashButton.setOnClickListener {
@@ -159,7 +159,7 @@ class SendCrashActivity : AppCompatActivity(), DebugLogService.Client.Callback {
}
override fun onDestroy() {
- if (::client.isInitialized) client.release()
+ client.release()
super.onDestroy()
}
More information about the Android
mailing list