Skip to content
Snippets Groups Projects
Commit f0d9f9c4 authored by Nicolas Pomepuy's avatar Nicolas Pomepuy Committed by Geoffrey Métais
Browse files

Fix forum URL

(cherry picked from commit fa4ff830)
parent 5b50ab31
No related branches found
No related tags found
No related merge requests found
......@@ -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()
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment