Skip to content

Commit e627dc1

Browse files
author
Felix Garcia Borrego
committed
Bump version 0.5.0 (initial support for Native Electron App)
1 parent c99a9fb commit e627dc1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

chromeapp/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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": {

src/main/scala/api/DockerClient.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)