diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-04-13 01:12:02 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-04-13 01:12:02 -0400 |
| commit | 65fb01bbe2fb95876217d2374a72b175fe235e60 (patch) | |
| tree | 08764db9e11c0ac3bccece1c09fc63017887033a /MediaBrowser.Controller/Sync/IHasDynamicAccess.cs | |
| parent | 933fca78e65c146b3cf16eefce6410b21e18cdbe (diff) | |
rework server sync
Diffstat (limited to 'MediaBrowser.Controller/Sync/IHasDynamicAccess.cs')
| -rw-r--r-- | MediaBrowser.Controller/Sync/IHasDynamicAccess.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Sync/IHasDynamicAccess.cs b/MediaBrowser.Controller/Sync/IHasDynamicAccess.cs index f907de729..cf868a381 100644 --- a/MediaBrowser.Controller/Sync/IHasDynamicAccess.cs +++ b/MediaBrowser.Controller/Sync/IHasDynamicAccess.cs @@ -9,10 +9,10 @@ namespace MediaBrowser.Controller.Sync /// <summary> /// Gets the synced file information. /// </summary> - /// <param name="remotePath">The remote path.</param> + /// <param name="id">The identifier.</param> /// <param name="target">The target.</param> /// <param name="cancellationToken">The cancellation token.</param> /// <returns>Task<SyncedFileInfo>.</returns> - Task<SyncedFileInfo> GetSyncedFileInfo(string remotePath, SyncTarget target, CancellationToken cancellationToken); + Task<SyncedFileInfo> GetSyncedFileInfo(string id, SyncTarget target, CancellationToken cancellationToken); } } |
