Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit acca84d

Browse files
author
Geoffrey Goh
committed
make GetBundleUrl non-static
1 parent 92da7c6 commit acca84d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

windows/CodePush.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,12 @@ private async Task<long> GetBinaryResourcesModifiedTime()
9898
return fileProperties.DateModified.ToUnixTimeMilliseconds();
9999
}
100100

101-
public static string GetBundleUrl()
101+
public string GetBundleUrl()
102102
{
103103
return GetBundleUrl(DEFAULT_JS_BUNDLE_NAME);
104104
}
105105

106-
public static string GetBundleUrl(string assetsBundleFileName)
106+
public string GetBundleUrl(string assetsBundleFileName)
107107
{
108108
if (currentInstance == null)
109109
{

0 commit comments

Comments
 (0)