Skip to content

Commit

Permalink
fix: custom id null
Browse files Browse the repository at this point in the history
  • Loading branch information
trueai-org committed Jul 9, 2024
1 parent cd6c729 commit dd4896c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Midjourney.Infrastructure/Handle/MessageHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ protected void FinishTask(TaskInfo task, SocketMessage message)
};
}
return null;
}).Where(c => c != null).ToList();
}).Where(c => c != null && !string.IsNullOrWhiteSpace(c.CustomId)).ToList();

if (string.IsNullOrWhiteSpace(task.Description))
{
Expand Down

0 comments on commit dd4896c

Please sign in to comment.