Skip to content
Snippets Groups Projects
Commit 085cb973 authored by Diego Fernando Nieto's avatar Diego Fernando Nieto Committed by Geoffrey Métais
Browse files

Fix chromecast device name

parent 1703a72f
No related branches found
Tags 3.1.6
No related merge requests found
......@@ -20,7 +20,7 @@ public class RendererItem extends VLCObject<RendererItem.Event> {
RendererItem(String name, String type, String iconUrl, int flags, long ref) {
final int index = name.lastIndexOf('-');
this.name = name;
this.displayName = index == -1 ? name : name.substring(0, index).replace('-', ' ');
this.displayName = index == -1 ? name : name.replace('-', ' ');
this.type = type;
this.iconUrl = iconUrl;
this.flags = flags;
......
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