From a00fdcbd3ddc15e830e10858a2c87832f258096d Mon Sep 17 00:00:00 2001 From: TiA4f8R <74829229+TiA4f8R@users.noreply.github.com> Date: Sun, 23 May 2021 20:27:45 +0200 Subject: [PATCH] Format the indentation of the definition of the apiUrl string in SoundcloudParsingHelper.resolveFor method Co-authored-by: Tobi --- .../services/soundcloud/SoundcloudParsingHelper.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/extractor/src/main/java/org/schabi/newpipe/extractor/services/soundcloud/SoundcloudParsingHelper.java b/extractor/src/main/java/org/schabi/newpipe/extractor/services/soundcloud/SoundcloudParsingHelper.java index 1db4332c..229555eb 100644 --- a/extractor/src/main/java/org/schabi/newpipe/extractor/services/soundcloud/SoundcloudParsingHelper.java +++ b/extractor/src/main/java/org/schabi/newpipe/extractor/services/soundcloud/SoundcloudParsingHelper.java @@ -119,8 +119,9 @@ public class SoundcloudParsingHelper { */ public static JsonObject resolveFor(@Nonnull final Downloader downloader, final String url) throws IOException, ExtractionException { - final String apiUrl = SOUNDCLOUD_API_V2_URL + "resolve" + "?url=" - + URLEncoder.encode(url, UTF_8) + "&client_id=" + clientId(); + final String apiUrl = SOUNDCLOUD_API_V2_URL + "resolve" + + "?url=" + URLEncoder.encode(url, UTF_8) + + "&client_id=" + clientId(); try { final String response = downloader.get(apiUrl, SoundCloud.getLocalization())