Skip to content

Commit a4a5c45

Browse files
authored
fix(dynamic-links): ios parameters builder assigned to wrong variable (#162)
1 parent 050e7b9 commit a4a5c45

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/firebase-dynamic-links/.eslintrc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extends": ["../../.eslintrc.json"],
3-
"ignorePatterns": ["!**/*", "node_modules/**/*"],
3+
"ignorePatterns": ["!**/*", "node_modules/**/*", "typings/**/*"],
44
"overrides": [
55
{
66
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],

packages/firebase-dynamic-links/index.android.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ export class DynamicLinkIOSParameters implements IDynamicLinkIOSParameters {
142142
_bundleId: string;
143143
constructor(bundleId?: string) {
144144
this._bundleId = bundleId;
145-
this._native = new com.google.firebase.dynamiclinks.DynamicLink.IosParameters.Builder(bundleId);
145+
this._builder = new com.google.firebase.dynamiclinks.DynamicLink.IosParameters.Builder(bundleId);
146146
}
147147

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

0 commit comments

Comments
 (0)