Skip to content

Commit

Permalink
Merge pull request #926 from Chia-Network/develop
Browse files Browse the repository at this point in the history
release: 1.6.11
  • Loading branch information
MichaelTaylor3D authored Sep 15, 2023
2 parents c55867c + 79d3384 commit 9931fc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cadt",
"version": "1.6.8",
"version": "1.6.11",
"_comment": "DONT CHANGE MAJOR UNLESS DATAMODEL CHANGES: The major version corresponds to the datamodel version your using, so 2.0.0 means it'll use datamodel v2",
"private": true,
"bin": "build/server.js",
Expand Down
2 changes: 1 addition & 1 deletion src/models/file-store/file-store.model.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class FileStore extends Model {
static async addFileToFileStore(SHA256, fileName, base64File) {
const myOrganization = await Organization.getHomeOrg();

if (myOrganization) {
if (!myOrganization) {
throw new Error('No homeorg detected');
}

Expand Down

0 comments on commit 9931fc6

Please sign in to comment.