Skip to content

Commit

Permalink
fix tag view not refreshing after loads
Browse files Browse the repository at this point in the history
  • Loading branch information
wakingrufus committed Apr 13, 2022
1 parent e920a6b commit 45363ec
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@ class ObservableLibrary(val rootDir: File) : Logging {
listeners.forEach {
it.loadComplete()
}
tagListeners.forEach {
it.loadComplete()
}
}

}
Expand Down Expand Up @@ -167,6 +170,9 @@ class ObservableLibrary(val rootDir: File) : Logging {
listeners.forEach {
it.loadComplete()
}
tagListeners.forEach {
it.loadComplete()
}
logger().info("scanned ${newTrackScans.size} tracks")
createCSVFile()
}
Expand Down

0 comments on commit 45363ec

Please sign in to comment.