diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-09 16:23:55 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-09 16:23:55 -0500 |
| commit | 6ff59b7e590be140781292206a55822742f2c8fa (patch) | |
| tree | edfaf8da1bee7d2070597671af77527a5b1ad62e | |
| parent | eaf1d39089afd5c758549f9445812113e720dadf (diff) | |
fixed image swap function in editor
| -rw-r--r-- | MediaBrowser.Controller/Entities/BaseItem.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs index ad997779d..72e7f5bf1 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -1351,9 +1351,7 @@ namespace MediaBrowser.Controller.Entities FileSystem.SwapFiles(path1, path2); - info1.Path = path2; - info2.Path = path1; - + // Refresh these values info1.DateModified = FileSystem.GetLastWriteTimeUtc(info1.Path); info2.DateModified = FileSystem.GetLastWriteTimeUtc(info2.Path); |
