Skip to content

Commit

Permalink
Update socialPostEng.js
Browse files Browse the repository at this point in the history
  • Loading branch information
hagaryavin authored Nov 21, 2024
1 parent 543dc9f commit 0a92049
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions socialPostEng.js
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,9 @@ function fixFirstName(phoneNum) {
splittedName[0] === "פרופ'" ||
splittedName[0] === "Dr."||
splittedName[0] === "הרב" ||
splittedName[0] === "ד״ר"
splittedName[0] === "ד״ר" ||
splittedName[0] === 'עו"ד'||
splittedName[0] === 'עו״ד'
) {
return splittedName[1];
}
Expand All @@ -547,7 +549,9 @@ function fixCreatorFirstName() {
splittedName[0] === "פרופ'" ||
splittedName[0] === "Dr."||
splittedName[0] === "הרב" ||
splittedName[0] === "ד״ר"
splittedName[0] === "ד״ר" ||
splittedName[0] === 'עו"ד'||
splittedName[0] === 'עו״ד'
) {
return splittedName[1];
}
Expand Down Expand Up @@ -575,7 +579,9 @@ function fixInterviewerFirstName(phoneNum) {
splittedName[0] === "פרופ'" ||
splittedName[0] === "Dr."||
splittedName[0] === "הרב" ||
splittedName[0] === "ד״ר"
splittedName[0] === "ד״ר" ||
splittedName[0] === 'עו"ד'||
splittedName[0] === 'עו״ד'
) {
return splittedName[1];
}
Expand Down

0 comments on commit 0a92049

Please sign in to comment.