Solving issues with opening remote notebooks.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2016-09-23 09:05:24 +00:00
parent 3445ff1fe2
commit 656cfd378e
1 changed files with 2 additions and 2 deletions

View File

@ -387,12 +387,12 @@ GrafoscopioNotebook >> openFromUrl: anUrl [
"Opens a tree from a file named aFileName"
| fileName |
fileName := anUrl splitOn: '/' last.
fileName := (anUrl splitOn: '/') last.
GrafoscopioGUI
downloadingFrom: anUrl
withMessage: 'Downloading document...'
into: FileLocator temp.
self class new openFromFile: (FileLocator temp fileName)
self class new openFromFile: (FileLocator temp / fileName)
]
{ #category : #persistence }