Skip to content

Commit

Permalink
fix issues with sharing email
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesabarnes committed Feb 11, 2021
1 parent d00aa9d commit 14636bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/services/share/share.service.ts
Expand Up @@ -74,9 +74,9 @@ export class ShareService {

private description(job: any, url?: any): any {
if (url) {
return 'Check out this ' + job.title + ' job: ' + encodeURIComponent(url);
return 'Check out this ' + encodeURIComponent(job.title) + ' job: ' + encodeURIComponent(url);
}
return 'Check out this ' + job.title + ' job!';
return 'Check out this ' + encodeURIComponent(job.title) + ' job!';
}

}

0 comments on commit 14636bd

Please sign in to comment.