Skip to content

Commit

Permalink
dev
Browse files Browse the repository at this point in the history
  • Loading branch information
immisterio committed Dec 2, 2023
1 parent a979536 commit a2e1ab5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion Shared.Engine/Online/Kinobase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,11 @@ public KinobaseInvoke(string? host, string apihost, Func<string, ValueTask<strin
string IDENTIFIER = Regex.Match(news, "var IDENTIFIER = \"([^\"]+)").Groups[1].Value;
string PLAYER_CUID = Regex.Match(news, "var PLAYER_CUID = \"([^\"]+)").Groups[1].Value;

string? evalcode = await onget($"{apihost}/videoplayer.js?movie_id={MOVIE_ID}&IDENTIFIER={IDENTIFIER}&player_type=new&file_type=hls&_=1684592281");
string? fix_args = null;
if (fix_args == null)
return null;

string? evalcode = await onget($"{apihost}/videoplayer.js?movie_id={MOVIE_ID}&identifier={IDENTIFIER}&player_type=new&file_type=hls" + fix_args);
if (evalcode == null)
return null;

Expand Down
2 changes: 1 addition & 1 deletion Shared/Engine/BaseController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class BaseController : Controller, IDisposable
{
IServiceScope serviceScope;

public static string appversion => "89";
public static string appversion => "90";

public IMemoryCache memoryCache { get; private set; }

Expand Down

0 comments on commit a2e1ab5

Please sign in to comment.