remove param

This commit is contained in:
Jay 2018-08-20 23:07:43 +08:00
parent 217608d6e4
commit 54e0daf198

View File

@ -20,7 +20,7 @@ const typeTwitch = async (c, n) => {
const typeSystem = async (c, n) => {
let text = `select * from "public"."twitch_channel"`
let values = [c.session.user.id]
let values = []
let result = await c.db.query({text, values})
c.state.channelList = result.rows
return n()