Skip to content

Commit

Permalink
OutputAdapter
Browse files Browse the repository at this point in the history
  • Loading branch information
collins-self committed Dec 30, 2024
1 parent 14659c4 commit 4bce158
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Libraries/Adapters/eDNAAdapters/OutputAdapter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,7 @@ protected override void ExecuteMetadataRefresh()
if ((object)database == null)
database = new AdoDataConnection("systemSettings");

updateTime = Convert.ToDateTime(database.Connection.ExecuteScalar($"SELECT UpdatedOn FROM Measurement WHERE SignalID = '{signalID}'"));
updateTime = Convert.ToDateTime(database.Connection.ExecuteScalar("SELECT UpdatedOn FROM Measurement WHERE SignalID = '{0}'", signalID));
}
}
catch (Exception)
Expand Down

0 comments on commit 4bce158

Please sign in to comment.