Format code with prettier
This commit fixes the style issues introduced in 262e922 according to the output
from prettier.
Details: https://deepsource.io/gh/MillenniumEarl/F95API/transform/c3bfc52a-3e9c-4ab0-9f9e-a9140d581cf1/
			
			
				pull/15/head
			
			
		
							parent
							
								
									262e922f5b
								
							
						
					
					
						commit
						cf4b3e1269
					
				| 
						 | 
					@ -4,7 +4,7 @@
 | 
				
			||||||
const fs = require("fs");
 | 
					const fs = require("fs");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Public modules from npm
 | 
					// Public modules from npm
 | 
				
			||||||
const { File } = require('megajs');
 | 
					const { File } = require("megajs");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Modules from file
 | 
					// Modules from file
 | 
				
			||||||
const { prepareBrowser, preparePage } = require("../puppeteer-helper.js");
 | 
					const { prepareBrowser, preparePage } = require("../puppeteer-helper.js");
 | 
				
			||||||
| 
						 | 
					@ -41,8 +41,10 @@ class GameDownload {
 | 
				
			||||||
   * @return {Promise<Boolean>} Result of the operation
 | 
					   * @return {Promise<Boolean>} Result of the operation
 | 
				
			||||||
   */
 | 
					   */
 | 
				
			||||||
  async download(path) {
 | 
					  async download(path) {
 | 
				
			||||||
    if (this.link.includes("mega.nz")) return await downloadMEGA(this.link, path);
 | 
					    if (this.link.includes("mega.nz"))
 | 
				
			||||||
    else if (this.link.includes("nopy.to")) return await downloadNOPY(this.link, path);
 | 
					      return await downloadMEGA(this.link, path);
 | 
				
			||||||
 | 
					    else if (this.link.includes("nopy.to"))
 | 
				
			||||||
 | 
					      return await downloadNOPY(this.link, path);
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
module.exports = GameDownload;
 | 
					module.exports = GameDownload;
 | 
				
			||||||
| 
						 | 
					@ -83,9 +85,9 @@ async function downloadNOPY(url, savepath) {
 | 
				
			||||||
  await page.waitForSelector("#download");
 | 
					  await page.waitForSelector("#download");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Set the save path
 | 
					  // Set the save path
 | 
				
			||||||
  await page._client.send('Page.setDownloadBehavior', {
 | 
					  await page._client.send("Page.setDownloadBehavior", {
 | 
				
			||||||
    behavior: 'allow',
 | 
					    behavior: "allow",
 | 
				
			||||||
    downloadPath: path.basename(path.dirname(savepath)) // Is a directory
 | 
					    downloadPath: path.basename(path.dirname(savepath)), // Is a directory
 | 
				
			||||||
  });
 | 
					  });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Obtain the download button and click it
 | 
					  // Obtain the download button and click it
 | 
				
			||||||
| 
						 | 
					@ -94,8 +96,8 @@ async function downloadNOPY(url, savepath) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Await for all the connections to close
 | 
					  // Await for all the connections to close
 | 
				
			||||||
  await page.waitForNavigation({
 | 
					  await page.waitForNavigation({
 | 
				
			||||||
    waitUntil: 'networkidle0',
 | 
					    waitUntil: "networkidle0",
 | 
				
			||||||
    timeout: 0 // Disable timeout
 | 
					    timeout: 0, // Disable timeout
 | 
				
			||||||
  });
 | 
					  });
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // Close browser and page
 | 
					  // Close browser and page
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -40,7 +40,8 @@ async function downloadGameNOPY() {
 | 
				
			||||||
async function downloadGameMEGA() {
 | 
					async function downloadGameMEGA() {
 | 
				
			||||||
  let gd = new GameDownload();
 | 
					  let gd = new GameDownload();
 | 
				
			||||||
  gd.hosting = "NOPY";
 | 
					  gd.hosting = "NOPY";
 | 
				
			||||||
  gd.link = "https://f95zone.to/masked/mega.nz/2733/1470797/4O5LKwMx4ZSlw0QYTVMP0uDK660/hoobTb44f0IKx7Yio2SE2w/loX_px2vLRyNRQCnkNn5U7nnQe7jGmpEVERvH1tk7RjAFkQbs2kH_vCK6zVmRDuqiypPoIx358MNHHCd3QCdVvEsClSiAq4rwjK0r_ruXIs";
 | 
					  gd.link =
 | 
				
			||||||
 | 
					    "https://f95zone.to/masked/mega.nz/2733/1470797/4O5LKwMx4ZSlw0QYTVMP0uDK660/hoobTb44f0IKx7Yio2SE2w/loX_px2vLRyNRQCnkNn5U7nnQe7jGmpEVERvH1tk7RjAFkQbs2kH_vCK6zVmRDuqiypPoIx358MNHHCd3QCdVvEsClSiAq4rwjK0r_ruXIs";
 | 
				
			||||||
  let savepath = join(__dirname, "Kingdom_of_Deception-pc0.10.8.zip");
 | 
					  let savepath = join(__dirname, "Kingdom_of_Deception-pc0.10.8.zip");
 | 
				
			||||||
  let result = await gd.download(savepath);
 | 
					  let result = await gd.download(savepath);
 | 
				
			||||||
  console.log(result);
 | 
					  console.log(result);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue