Format code with prettier

This commit fixes the style issues introduced in 4a3f224 according to the output
from prettier.

Details: https://deepsource.io/gh/MillenniumEarl/F95API/transform/5241b5be-e9a0-4938-aa8c-cff3d858c572/
pull/25/head
deepsource-autofix[bot] 2020-10-16 07:21:31 +00:00 committed by GitHub
parent 4a3f224500
commit f469d01e0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -121,7 +121,10 @@ async function getThreadURL(page, handle) {
// Some game already have a full URL
if (isF95URL(relativeURLThread)) return relativeURLThread;
const urlThread = new URL(relativeURLThread, constURLs.F95_BASE_URL).toString();
const urlThread = new URL(
relativeURLThread,
constURLs.F95_BASE_URL
).toString();
return urlThread;
}
//#endregion Private methods