Made playlists default to user-created.

This commit is contained in:
Jonathan Bernard
2016-06-01 11:28:27 -05:00
parent 19e21811e2
commit 7101f3fd53
2 changed files with 14 additions and 6 deletions

View File

@ -5,7 +5,7 @@ import java.util.Date;
import java.util.UUID;
public class Playlist extends Model {
public boolean userCreated = false;
public boolean userCreated = true;
public String name;
public int mediaFileCount = 0;
public UUID copiedFromId = null;