Skip to content

Commit

Permalink
Added option to not update iTunes
Browse files Browse the repository at this point in the history
  • Loading branch information
TheNathanSpace committed Oct 27, 2020
1 parent 2cd499f commit 8fb3d72
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ideemyouworthy/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
split_uri = track.split(":")

if split_uri[1] == "local":
track_manager.store_local_tracks(track)
track_manager.store_problematic_track(track)
else:
spotify_url = "https://open.spotify.com/" + split_uri[1] + "/" + split_uri[2]
deezer_id = spotify_helper.get_trackid_spotify(deezer_object, split_uri[2], False, None)
Expand All @@ -83,5 +83,6 @@
else:
logger.log("Downloading 0 tracks")

if use_itunes:
fix_itunes = input("Compare iTunes and cached versions of playlists to re-sync (reverts user modifications)? [y/n] ")
if use_itunes and fix_itunes:
track_manager.verify_itunes()

0 comments on commit 8fb3d72

Please sign in to comment.