9 lines
228 B
Smalltalk
9 lines
228 B
Smalltalk
accessing
|
|
profileImageFile
|
|
|
|
| file |
|
|
file := (self folder / 'profile-image', 'jpg').
|
|
file exists ifTrue: [ file asFileReference size = 0
|
|
ifTrue:[ ^ self downloadProfileImage ].
|
|
^ file. ].
|
|
^ self downloadProfileImage |