Skip to content

v1.2.1

Compare
Choose a tag to compare
@enes-sahin enes-sahin released this 15 Jun 14:20
· 21 commits to master since this release
f301b0e

Fixed

  • Fix pool variable checking in query method See code

Replace following code

let connection = this.pool !== undefined ? this.pool : this.connection;

with

let connection = this.pool !== null ? this.pool : this.connection;