From a5fe556108e63ceb20cb59525a541299584086ff Mon Sep 17 00:00:00 2001 From: "Michael J. Seiferling" Date: Fri, 16 Mar 2018 12:51:05 -0600 Subject: [PATCH] Fixed potential issue with game ID sync --- GBM/Managers/mgrMonitorList.vb | 1 + 1 file changed, 1 insertion(+) diff --git a/GBM/Managers/mgrMonitorList.vb b/GBM/Managers/mgrMonitorList.vb index f944788..b06168a 100644 --- a/GBM/Managers/mgrMonitorList.vb +++ b/GBM/Managers/mgrMonitorList.vb @@ -954,6 +954,7 @@ Public Class mgrMonitorList oRemoteDatabase.RunMassParamQuery(sSQL, oParamList) sSQL &= "UPDATE sessions SET MonitorID=@MonitorID WHERE MonitorID=@QueryID;" + sSQL &= "UPDATE gameprocesses SET MonitorID=@MonitorID WHERE MonitorID=@QueryID;" oLocalDatabase.RunMassParamQuery(sSQL, oParamList)