Skip to content

Commit c1a67cf

Browse files
author
Mike Skutta
committed
Fixed issues with email reports and broken links.
1 parent 937c5b9 commit c1a67cf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Core/Data/ReportDataService.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public static ReportResponse ExecuteQuery(ReportDataQuery queryData, CachingPoli
2424
foreach (DataRow dataRow in dataTable.Rows)
2525
{
2626
var key = GetStringValue(dataRow, "[Key]");
27-
27+
var dimensionKeyId = GetInt64Value(dataRow, "[DimensionKeyId]");
2828
var bounces = GetIntValue(dataRow, "[Bounces]");
2929
var conversions = GetIntValue(dataRow, "[Conversions]");
3030
var timeOnSite = GetInt64Value(dataRow, "[TimeOnSite]");
@@ -37,6 +37,7 @@ public static ReportResponse ExecuteQuery(ReportDataQuery queryData, CachingPoli
3737
var reportRow = new ReportRow
3838
{
3939
Key = key,
40+
DimensionKeyId = dimensionKeyId,
4041
Bounces = bounces,
4142
Conversions = conversions,
4243
TimeOnSite = timeOnSite,

0 commit comments

Comments
 (0)