Skip to content

Commit 9126b60

Browse files
authored
[Tech] Fix channel logs (#942)
* use logError instead of console.error * add early return * bump
1 parent d80eb12 commit 9126b60

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hyperplay",
3-
"version": "0.16.0",
3+
"version": "0.16.1",
44
"private": true,
55
"main": "build/main/main.js",
66
"homepage": "./",

src/backend/storeManagers/hyperplay/library.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,14 @@ export async function listUpdateableGames(): Promise<string[]> {
206206

207207
if (val.channels && val.install.channelName && val.install.platform) {
208208
if (!Object.hasOwn(val.channels, val.install.channelName)) {
209-
console.error(`
209+
logError(
210+
`
210211
Cannot find installed channel name in channels.
211212
The channel name may have been changed by the remote.
212-
To continue to receive game updates, uninstall and reinstall this game: ${val.title}`)
213+
To continue to receive game updates, uninstall and reinstall this game: ${val.title}`,
214+
LogPrefix.HyperPlay
215+
)
216+
return
213217
}
214218
if (
215219
// games installed before 0.5.0 used gameInfo.version for install.version

0 commit comments

Comments
 (0)