Skip to content

Commit

Permalink
Merge pull request #3121 from sorano/master
Browse files Browse the repository at this point in the history
Update EmbyURL. Fixes #3078
  • Loading branch information
tidusjar authored Aug 15, 2019
2 parents ad6e1fb + ad85f16 commit e019402
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## v3.0.4680 (2019-07-17)


### **Fixes**

- Fixed the database lock issues - [TidusJar]
- Fixed the issue with [Plex OAuth](https://forums.plex.tv/t/plex-oauth-not-working-with-tautulli-ombi-etc/433945) - [TidusJar]

## v3.0.4659 (2019-07-02)

### **New Features**
Expand Down
4 changes: 2 additions & 2 deletions src/Ombi.Helpers/EmbyHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ public static string GetEmbyMediaUrl(string mediaId, string customerServerUrl =
{
if (customerServerUrl.HasValue())
{
return $"{customerServerUrl}#!/itemdetails.html?id={mediaId}";
return $"{customerServerUrl}#!/item/item.html?id={mediaId}";
}
else
{
return $"https://app.emby.media/#!/itemdetails.html?id={mediaId}";
return $"https://app.emby.media/#!/item/item.html?id={mediaId}";
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions src/Ombi/ClientApp/app/settings/emby/emby.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@
</label>
<div>
<input type="text" class="form-control-custom form-control" id="authToken" [(ngModel)]="server.serverHostname" placeholder="e.g. https://jellyfin.server.com/" value="{{server.serverHostname}}">
<small><span *ngIf="server.serverHostname">Current URL: "{{server.serverHostname}}/#!/itemdetails.html?id=1"</span>
<span *ngIf="!server.serverHostname">Current URL: "https://app.emby.media/#!/itemdetails.html?id=1</span></small>
<small><span *ngIf="server.serverHostname">Current URL: "{{server.serverHostname}}/#!/item/item.html?id=1"</span>
<span *ngIf="!server.serverHostname">Current URL: "https://app.emby.media/#!/item/item.html?id=1</span></small>
</div>
</div>
<div class="form-group">
Expand Down Expand Up @@ -100,4 +100,4 @@
</div>
</div>
</fieldset>
</div>
</div>

0 comments on commit e019402

Please sign in to comment.