Skip to content

Commit

Permalink
Fix ifNil: call [feenkcom/gtoolkit#4322]
Browse files Browse the repository at this point in the history
  • Loading branch information
hellerve committed Mar 3, 2025
1 parent 19868b3 commit ae688a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Gt4OpenAI/GtOpenAIResourceFile.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ GtOpenAIResourceFile >> remoteId: anObject [

{ #category : #accessing }
GtOpenAIResourceFile >> toFileDescription [
^ (self remoteId ifNil: '<unknown ID>')
^ (self remoteId ifNil: [ '<unknown ID>' ])
, ':
- Name: ' , self file basename
, '
Expand Down

0 comments on commit ae688a2

Please sign in to comment.