Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
It seems that the $employment et $institution members in OrcidSync.pm are not defined properly...
We had to change from :
foreach my $employment ( @{$json_text->{"$affiliation-summary"}} ) { if( $employment->{'organization'}->{'disambiguation-organization-identifier'} eq $institution->{'organization'}->{'disambiguation-organization-identifier'} ) { $add_institution = 0; } }
to :
foreach my $employment ( @{$json_text->{"$affiliation-summary"}} ) { my $orgid1 = $institution->{'organization'}->{'disambiguated-organization'}->{'disambiguated-organization-identifier'}; my $orgid2 = $employment->{'organization'}->{'disambiguated-organization'}->{'disambiguated-organization-identifier'}; if( $orgid1 eq $orgid2 ) { $add_institution = 0; } }
The text was updated successfully, but these errors were encountered:
Add missing phrases and fix Issue #5 where existing institutions in t…
376c7bb
…he user's orcid.org profile were not being checked correctly.
Thanks for alerting us to this! Fixed with commit 376c7bb
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Hi,
It seems that the $employment et $institution members in OrcidSync.pm are not defined properly...
We had to change from :
to :
The text was updated successfully, but these errors were encountered: