Skip to content

Commit

Permalink
fix(objects): use the correct speckle_type value on objects (#2375)
Browse files Browse the repository at this point in the history
  • Loading branch information
gjedlicska authored Jun 16, 2024
1 parent c79f0c5 commit 24b7164
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/server/modules/core/services/objects.js
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,9 @@ function prepInsertionObject(streamId, obj) {
data: stringifiedObj, // stored in jsonb column
streamId,
id: obj.id,
speckleType: obj.speckleType
// YEAH, this has been broken forever...
// speckleType: obj.speckleType
speckleType: obj.speckle_type
}
}

Expand Down

0 comments on commit 24b7164

Please sign in to comment.