Skip to content

Commit

Permalink
1.0.1
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
flatsiedatsie authored Dec 16, 2020
1 parent 12f5bf5 commit a9734b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/airport.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def __init__(self, verbose=True):
self.shairport_library_path = os.path.join(self.addon_path, 'shairport')
self.shairport_default_conf_path = os.path.join(self.addon_path, 'shairport', 'shairport_default.conf')
#self.shairport_conf_path = os.path.join(self.addon_path, 'shairport', 'shairport.conf')
self.shairport_conf_path = os.path.join(self.user_profile['addonsDir'], self.addon_name,'shairport.conf')
self.shairport_conf_path = os.path.join(self.user_profile['dataDir'], self.addon_name,'shairport.conf') # The default file is modified and copied into this file
self.shairport_start_command = "LD_LIBRARY_PATH='" + self.shairport_library_path + "' " + self.shairport_path + " -j -c " + self.shairport_conf_path
print("self.shairport_conf_path = " + self.shairport_conf_path)

Expand Down

0 comments on commit a9734b8

Please sign in to comment.