Skip to content

Commit

Permalink
fix: the request now goes to rdkit instead of opedbabel which was thr…
Browse files Browse the repository at this point in the history
…owing bad gateway error.
  • Loading branch information
sriramkanakam87 committed Oct 16, 2024
1 parent 9d068f0 commit 7e0fe0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Livewire/MoleculeDepict3d.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class MoleculeDepict3d extends Component
#[Computed]
public function source()
{
return env('CM_API').'depict/3D?smiles='.urlencode($this->smiles).'&height='.$this->height.'&width='.$this->width.'&CIP='.$this->CIP.'&toolkit=openbabel';
return env('CM_API').'depict/3D?smiles='.urlencode($this->smiles).'&height='.$this->height.'&width='.$this->width.'&CIP='.$this->CIP.'&toolkit=rdkit';
}

public function render()
Expand Down

0 comments on commit 7e0fe0f

Please sign in to comment.