From d02644f7c41150709795e57bfd40351b4da35a7b Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Sat, 23 Apr 2022 01:59:21 +0200 Subject: Preload safe debug shim (#29) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In https://github.com/ferdium/ferdium-app/pull/23 we removed usages of the debug package due to an electron bug. This patch aims to restore some debug functionality by introducing a shim. The shim detect whether if it is being introduced in a preload script where the electron but would be triggered, and falls back to a simple replacement for debug. However, in the main and renderer processes, where a preload script is not being used, we still get full debug functionality. In this way, a module can be used both in a preload script and outside of it, while still preserving debug functionality whenever possible. Signed-off-by: Kristóf Marussy --- src/internal-server/app/Controllers/Http/RecipeController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/internal-server') diff --git a/src/internal-server/app/Controllers/Http/RecipeController.js b/src/internal-server/app/Controllers/Http/RecipeController.js index 474ffadb4..5f7c32d70 100644 --- a/src/internal-server/app/Controllers/Http/RecipeController.js +++ b/src/internal-server/app/Controllers/Http/RecipeController.js @@ -4,7 +4,7 @@ const { validateAll } = use('Validator'); const Env = use('Env'); const fetch = require('node-fetch'); -const debug = require('debug')('Ferdium:internalServer:RecipeController'); +const debug = require('../../../../preload-safe-debug')('Ferdium:internalServer:RecipeController'); const { LIVE_FERDIUM_API } = require('../../../../config'); const { API_VERSION } = require('../../../../environment-remote'); -- cgit v1.2.3-70-g09d2