URGENT objectsender failing to send data to server

Hi all,

I’ve a running web app for a client that uses the objectsender.
From today I got an issue and things stopped to work. I tried to debug but it seems something change on your side?

This is what I’m doing:

import * as SpeckleSender from "@speckle/objectsender"

// create speckle object
  const speckleObject = SpeckleKit.toSpeckle(exportedProject) as SpeckleSender.Base
  let token = localStorage.getItem(TOKEN)
  let idCommit: string, idObject: string
  const result = await SpeckleSender.send(speckleObject, {
    serverUrl: SERVER_URL,
    projectId: streamId,
    token: token,
    logger: useLogStore(),
  })

I got a bad request:


image

I tried both on personal projects and projects migrated to workspaces.
My client is on a Starting plan with the full model/projects add on.

This is quite urgent since they really use the app on their day to day work.
Thank you!
Gianluca

Hey @iltabe

There was an issue in objectsender, that made the sent objects unloadable in the viewer.
We’ve fixed that and version 2.25.1 is running through the release process right now, should land on npm soon.

3 Likes

Thank you @gergo !
I was able to send again after updating to 2.25.1

1 Like