File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ FROM project_data pd
132132 IsFeatured = reader . GetBoolean ( reader . GetOrdinal ( "isfeatured" ) ) ,
133133 PrimaryCategoryId = reader . GetInt32 ( reader . GetOrdinal ( "primarycategoryid" ) ) ,
134134 ClassId = reader . GetInt32 ( reader . GetOrdinal ( "classid" ) ) ,
135- AllowModDistribution = reader . GetBoolean ( reader . GetOrdinal ( "allowmoddistribution" ) ) ,
135+ AllowModDistribution = ! reader . IsDBNull ( "allowmoddistribution" ) && reader . GetBoolean ( reader . GetOrdinal ( "allowmoddistribution" ) ) ,
136136 GamePopularityRank = reader . GetInt64 ( reader . GetOrdinal ( "gamepopularityrank" ) ) ,
137137 IsAvailable = reader . GetBoolean ( reader . GetOrdinal ( "isavailable" ) ) ,
138138 ThumbsUpCount = reader . GetInt64 ( reader . GetOrdinal ( "thumbsupcount" ) ) ,
You can’t perform that action at this time.
0 commit comments