aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Social/SharingManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Server.Implementations/Social/SharingManager.cs')
-rw-r--r--Emby.Server.Implementations/Social/SharingManager.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Emby.Server.Implementations/Social/SharingManager.cs b/Emby.Server.Implementations/Social/SharingManager.cs
index 54614c879..57cf93948 100644
--- a/Emby.Server.Implementations/Social/SharingManager.cs
+++ b/Emby.Server.Implementations/Social/SharingManager.cs
@@ -58,8 +58,8 @@ namespace Emby.Server.Implementations.Social
};
AddShareInfo(info, externalUrl);
-
- await _repository.CreateShare(info).ConfigureAwait(false);
+
+ _repository.CreateShare(info);
return info;
}
@@ -92,9 +92,9 @@ namespace Emby.Server.Implementations.Social
}
}
- public Task DeleteShare(string id)
+ public void DeleteShare(string id)
{
- return _repository.DeleteShare(id);
+ _repository.DeleteShare(id);
}
}
}