DevCompanion: Always use original

This commit is contained in:
Vendicated 2023-03-26 01:27:01 +01:00
parent 24aa90bd9c
commit 041a13c9d3
No known key found for this signature in database
GPG Key ID: A1DC0CFB5615D905
1 changed files with 2 additions and 1 deletions

View File

@ -158,7 +158,8 @@ function initWs(isManual = false) {
if (keys.length !== 1)
return reply("Expected exactly one 'find' matches, found " + keys.length);
let src = String(candidates[keys[0]]);
const mod = candidates[keys[0]];
let src = String(mod.original ?? mod);
let i = 0;