Added "keep" flag to songs, which will stop them being deleted.
This commit is contained in:
parent
17591cd6a7
commit
cc17eb0bd9
|
@ -95,6 +95,7 @@ public class MusicHandler implements AudioSendHandler, Closeable, Consumer<Song>
|
||||||
}
|
}
|
||||||
if (currentSong != null)
|
if (currentSong != null)
|
||||||
{
|
{
|
||||||
|
if (!currentSong.isKept())
|
||||||
currentSong.delete();
|
currentSong.delete();
|
||||||
currentSong = null;
|
currentSong = null;
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,7 @@ public class Song
|
||||||
|
|
||||||
private String requestedBy;
|
private String requestedBy;
|
||||||
private String requestedIn;
|
private String requestedIn;
|
||||||
|
private boolean kept = false;
|
||||||
|
|
||||||
public Song(URL url)
|
public Song(URL url)
|
||||||
{
|
{
|
||||||
|
@ -100,6 +101,16 @@ public class Song
|
||||||
this.requestedIn = requestedIn;
|
this.requestedIn = requestedIn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean isKept()
|
||||||
|
{
|
||||||
|
return kept;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setKept(boolean kept)
|
||||||
|
{
|
||||||
|
this.kept = kept;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString()
|
public String toString()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue