Kodierung wieder auf ISO-8859-15

This commit is contained in:
2020-06-01 20:34:38 +02:00
parent 55380e21db
commit 62c6a9d957
2 changed files with 1 additions and 1 deletions
Binary file not shown.
@@ -78,7 +78,7 @@ public class CardCreator {
protected List<Card> fetchCardData(List<String> links) throws SpotifyWebApiException, IOException { protected List<Card> fetchCardData(List<String> links) throws SpotifyWebApiException, IOException {
List<Card> cards = new LinkedList<Card>(); List<Card> cards = new LinkedList<Card>();
HashMap<EncodeHintType, Object> hints = new HashMap<EncodeHintType, Object>(); HashMap<EncodeHintType, Object> hints = new HashMap<EncodeHintType, Object>();
hints.put(EncodeHintType.CHARACTER_SET, "UTF-8"); hints.put(EncodeHintType.CHARACTER_SET, "ISO-8859-15");
for (String link : links) { for (String link : links) {
System.out.println(link); System.out.println(link);