mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
Merge pull request #3121 from sorano/master
Update EmbyURL. Fixes #3078
This commit is contained in:
commit
e019402a03
3 changed files with 13 additions and 5 deletions
|
@ -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**
|
||||
|
|
|
@ -11,11 +11,11 @@ namespace Ombi.Helpers
|
|||
{
|
||||
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}";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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">
|
||||
|
@ -100,4 +100,4 @@
|
|||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue