Browse Source

Update README Generator to use icons from pi-hosted.com instead of the local folders

Robert Middleswarth 2 years ago
parent
commit
9dd81b8972
1 changed files with 1 additions and 1 deletions
  1. 1 1
      build/generators/generateREADME.sh

+ 1 - 1
build/generators/generateREADME.sh

@@ -42,7 +42,7 @@ for vid in $(seq 0 $(( nVideos - 1 ))); do
 	ChID=$( echo "$info" | jq '.Channel' )
 	ChTitle=$( jq ".channels[] | select(.ID==${ChID}) | .Title" "$appinfo" | tr -d '"' )
 	ChURL=$( jq ".channels[] | select(.ID==${ChID}) | .URL" "$appinfo" | tr -d '"' )
-	ChIcon="../build/images/${ChID:1:-1}-logo.png"
+	ChIcon="https://pi-hosted.com/images/${ChID:1:-1}-logo.png"
 
 	# Get Video URL
 	URL=$( echo "$info" | jq '.URL' | tr -d '"' )