3 Commits
Author SHA1 Message Date
Emi Midnight 87661cf871 check for both null AND undefined in stream writer (#44)
This fixes IDZ support when minime is run using a newer LTS version of
node js.
(Streams use null for the error argument now for write and end
callbacks)
2024-03-19 11:59:08 +01:00
Tau d6d98aa561 v016 2021-02-04 17:03:11 -05:00
Tau 2c78e6646a Fix trailing comma in SQL 2021-02-04 17:02:23 -05:00
3 changed files with 6 additions and 2 deletions
+4
View File
@@ -1,5 +1,9 @@
# CHANGELOG
## v016
- IDZ: Fix SQL syntax error (Tau)
## v015
- IDZ: Team fixes (BemaniWitch)
+1 -1
View File
@@ -241,7 +241,7 @@ create table "idz_team_auto" (
references "idz_team"("id")
on delete cascade,
"serial_no" integer not null,
"name_idx" integer not null,
"name_idx" integer not null
);
create table "idz_team_member" (
+1 -1
View File
@@ -14,7 +14,7 @@ export default function makeWriter(stm: Writable) {
stm.write(buf, error => {
busy = false;
if (error !== undefined) {
if (error !== null && error !== undefined) {
reject(error);
} else {
resolve();