Skip to content

Commit

Permalink
Closes #267 fixed bug where AreaTemperatureLoad was not being read
Browse files Browse the repository at this point in the history
  • Loading branch information
peterjamesnugent committed Jun 24, 2020
1 parent 4a49db0 commit 28a9f44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lusas_Adapter/CRUD/Read/Loads/AreaTemperatureLoads.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ private List<ILoad> ReadAreaTemperatureLoads(List<string> ids = null)
List<ILoad> bhomAreaTemperatureLoads = new List<ILoad>();
object[] lusasTemperatureLoads = d_LusasData.getAttributes("Temperature");

if (!(bhomAreaTemperatureLoads.Count() == 0))
if (!(lusasTemperatureLoads.Count() == 0))
{
List<Panel> bhomPanel = ReadPanels();
Dictionary<string, Panel> surfaceDictionary = bhomPanel.ToDictionary(
Expand Down

0 comments on commit 28a9f44

Please sign in to comment.