Skip to content

Commit

Permalink
v8.3.10: fix issue that prevents to enter js-dos key
Browse files Browse the repository at this point in the history
  • Loading branch information
caiiiycuk committed Dec 3, 2024
1 parent 5c836d2 commit 4ab9932
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-dos",
"version": "8.3.9",
"version": "8.3.10",
"description": "Full-featured DOS player with multiple emulator backends",
"type": "module",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/i18n.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const translations: {[lang: string]: {[key: string]: string} } = {
ru: {
hello: "Привет",
hello_guest: "Привет, гость!",
mobile_controls: "Моибльное управление",
mobile_controls: "Мобильное управление",
mirrored_controls: "Отразить управление",
scale_controls: "Масштаб управления",
enter_name_of_drive: "Введите название диска",
Expand Down
2 changes: 1 addition & 1 deletion src/window/prerun-window.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function SecretKey() {
.then(({ token, account }) => {
if (token === knownToken) {
dispatch(authSlice.actions.setAccount(account));
if (nonSerializableStore.options.url) {
if (account !== null && nonSerializableStore.options.url) {
loadBundleFromUrl(nonSerializableStore.options.url, store).catch((e) => {
store.dispatch(dosSlice.actions.bndError(e.message));
});
Expand Down

0 comments on commit 4ab9932

Please sign in to comment.