Add a permission check for the podcast folder

This should make podcast-related stacktraces a bit
more obvious to debug for users.
master
jvoisin 5 years ago
parent 10e90beb30
commit a21188a064
  1. 4
      airsonic-main/src/main/java/org/airsonic/player/service/PodcastService.java

@ -693,6 +693,10 @@ public class PodcastService {
File podcastDir = new File(settingsService.getPodcastFolder());
File channelDir = new File(podcastDir, StringUtil.fileSystemSafe(channel.getTitle()));
if (!podcastDir.canWrite()) {
throw new RuntimeException("The podcasts directory " + podcastDir + " isn't writeable.");
}
if (!channelDir.exists()) {
boolean ok = channelDir.mkdirs();
if (!ok) {

Loading…
Cancel
Save