Skip to content

Commit

Permalink
3.0.5482.4
Browse files Browse the repository at this point in the history
  • Loading branch information
LukePulverenti committed Jan 10, 2015
1 parent baf52ec commit 3552f81
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ protected override Series Resolve(ItemResolveArgs args)
}
else
{
if (args.HasParent<Series>())
{
return null;
}

if (string.IsNullOrWhiteSpace(collectionType))
{
if (args.HasParent<Series>())
{
return null;
}

if (args.Parent.IsRoot)
{
return null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public IEnumerable<ITaskTrigger> GetDefaultTriggers()

public bool IsHidden
{
get { return false; }
get { return true; }
}

public bool IsEnabled
Expand Down
6 changes: 3 additions & 3 deletions MediaBrowser.WebDashboard/dashboard-ui/scripts/sync.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@

function isAvailable(item, user) {

//return false;
return item.SupportsSync;
return false;
//return item.SupportsSync;
}

window.SyncManager = {
Expand All @@ -226,7 +226,7 @@
Dashboard.getCurrentUser().done(function (user) {

if (user.Policy.EnableSync) {
$('.categorySyncButton', page).show();
$('.categorySyncButton', page).hide();
} else {
$('.categorySyncButton', page).hide();
}
Expand Down
4 changes: 2 additions & 2 deletions SharedVersion.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Reflection;

[assembly: AssemblyVersion("3.0.*")]
//[assembly: AssemblyVersion("3.0.5482.3")]
//[assembly: AssemblyVersion("3.0.*")]
[assembly: AssemblyVersion("3.0.5482.4")]

0 comments on commit 3552f81

Please sign in to comment.