Skip to content

Commit

Permalink
fix(dynamic-links): ios parameters builder assigned to wrong variable (
Browse files Browse the repository at this point in the history
  • Loading branch information
mukaschultze committed Dec 5, 2022
1 parent 050e7b9 commit a4a5c45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/firebase-dynamic-links/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*", "node_modules/**/*"],
"ignorePatterns": ["!**/*", "node_modules/**/*", "typings/**/*"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
Expand Down
2 changes: 1 addition & 1 deletion packages/firebase-dynamic-links/index.android.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export class DynamicLinkIOSParameters implements IDynamicLinkIOSParameters {
_bundleId: string;
constructor(bundleId?: string) {
this._bundleId = bundleId;
this._native = new com.google.firebase.dynamiclinks.DynamicLink.IosParameters.Builder(bundleId);
this._builder = new com.google.firebase.dynamiclinks.DynamicLink.IosParameters.Builder(bundleId);
}

static fromNative(link: com.google.firebase.dynamiclinks.DynamicLink.IosParameters) {
Expand Down

0 comments on commit a4a5c45

Please sign in to comment.