File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 22 "name" : " Simple Docker UI" ,
33 "short_name" : " Docker UI" ,
44 "description" : " Simple Docker UI is an unofficial developer tool for monitoring and managing Docker containers." ,
5- "version" : " 0.4.10 " ,
5+ "version" : " 0.5.0 " ,
66 "manifest_version" : 2 ,
77 "minimum_chrome_version" : " 33.0.1715.0" ,
88 "icons" : {
Original file line number Diff line number Diff line change @@ -332,7 +332,7 @@ case class DockerClient(con: DockerConnection) {
332332 def containerChanges (containerId : String ): Future [Seq [FileSystemChange ]] = {
333333 con.get(path = s " /containers/ $containerId/changes " ).map { xhr =>
334334 log.info(" [dockerClient.containerChanges]" )
335- read[Seq [FileSystemChange ]](xhr.responseText)
335+ Option ( read[Seq [FileSystemChange ]](xhr.responseText)).getOrElse( Seq .empty )
336336 }
337337 }
338338
You can’t perform that action at this time.
0 commit comments