Skip to content

Commit

Permalink
Update src/description.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: Paul-Louis Ageneau <[email protected]>
  • Loading branch information
Sean-Der and paullouisageneau authored Jan 8, 2024
1 parent 1816165 commit d585ed1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/description.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -402,8 +402,8 @@ string Description::generateApplicationSdp(string_view eol) const {
sdp << "a=ice-options:" << utils::implode(mIceOptions, ',') << eol;
if (mFingerprint)
sdp << "a=fingerprint:"
<< CertificateFingerprint::AlgorithmIdentifier(mFingerprint.value().algorithm) << " "
<< mFingerprint.value().value << eol;
<< CertificateFingerprint::AlgorithmIdentifier(mFingerprint->algorithm) << " "
<< mFingerprint->value << eol;

for (const auto &attr : mAttributes)
sdp << "a=" << attr << eol;
Expand Down

0 comments on commit d585ed1

Please sign in to comment.